Added initial version of Generic Text Classifier 58/214258/2
authorNilesh Trimbake <t.shripati@samsung.com>
Thu, 19 Sep 2019 09:17:53 +0000 (14:47 +0530)
committerNilesh Trimbake <t.shripati@samsung.com>
Thu, 19 Sep 2019 09:40:09 +0000 (15:10 +0530)
This patch contain initial version of
generic text classifier.

Change-Id: Ic5da851f1db51749e7bbd1e7ed90ac48a66cc912
Signed-off-by: Nilesh Trimbake <t.shripati@samsung.com>
23 files changed:
AUTHORS [new file with mode: 0755]
CMakeLists.txt [new file with mode: 0644]
LICENSE [new file with mode: 0755]
NOTICE [new file with mode: 0755]
README.md [new file with mode: 0644]
generic_text_classifier.pc.in [new file with mode: 0644]
include/gc_categorization.h [new file with mode: 0644]
include/gc_common.h [new file with mode: 0644]
include/gc_data_preprocessing.h [new file with mode: 0644]
include/gc_inference.h [new file with mode: 0644]
include/gc_internal.h [new file with mode: 0644]
include/gc_persistent_storage.h [new file with mode: 0644]
include/gc_private.h [new file with mode: 0644]
include/generic_text_classifier.h [new file with mode: 0644]
include/generic_text_classifier_type.h [new file with mode: 0644]
packaging/generic_text_classifier.manifest [new file with mode: 0644]
packaging/generic_text_classifier.spec [new file with mode: 0644]
src/gc_categorization.cpp [new file with mode: 0644]
src/gc_data_preprocessing.cpp [new file with mode: 0644]
src/gc_inference.cpp [new file with mode: 0644]
src/gc_internal.c [new file with mode: 0644]
src/gc_persistent_storage.cpp [new file with mode: 0644]
src/generic_text_classifier.c [new file with mode: 0644]

diff --git a/AUTHORS b/AUTHORS
new file mode 100755 (executable)
index 0000000..09e9521
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,4 @@
+Andy Cho <sung.h.cho@samsung.com>
+SeungSeop Park <sns.park@samsung.com>
+Arun Kumar Singh <singh.arun@samsung.com>
+Trimbake Nilesh Shripati <t.shripati@samsung.com>
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644 (file)
index 0000000..dbfaea4
--- /dev/null
@@ -0,0 +1,79 @@
+CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
+SET(fw_name "generic_text_classifier")
+
+PROJECT(${fw_name})
+SET(PREFIX ${CMAKE_INSTALL_PREFIX})
+SET(LIB ${LIB_PATH})
+SET(LIBDIR ${PREFIX}/${LIB_PATH})
+SET(BINDIR "${PREFIX}/bin")
+
+SET(INC_DIR include)
+INCLUDE_DIRECTORIES(${INC_DIR})
+
+IF(DBPATH)
+    ADD_DEFINITIONS("-DDATABASE_FULL_PATH=\"${DBPATH}\"")
+ENDIF(DBPATH)
+
+INCLUDE(FindPkgConfig)
+pkg_check_modules(PKGS REQUIRED
+       glib-2.0
+       dlog
+)
+
+INCLUDE_DIRECTORIES(${PKGS_INCLUDE_DIRS})
+LINK_DIRECTORIES(${PKGS_LIBRARY_DIRS})
+
+IF ("${ENABLE_TEST}" STREQUAL "Y")
+   ADD_DEFINITIONS(-DENABLE_TEST)
+ENDIF()
+
+IF ("${EMBEDDING_TYPE}" STREQUAL "2")
+   ADD_DEFINITIONS(-DEMBEDDING_TYPE)
+ENDIF()
+
+FOREACH(flag ${${fw_name}_CFLAGS})
+    SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}")
+ENDFOREACH(flag)
+
+SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${EXTRA_CXXFLAGS} -fPIC -Wall -Werror -lsqlite3 -lglib-2.0 -ldlog")
+SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIC -Wall -lsqlite3 -lglib-2.0 -ldlog")
+SET(CMAKE_C_FLAGS_DEBUG "-O0 -g")
+
+ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"")
+
+SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=${LIBDIR}")
+
+aux_source_directory(src SOURCES_PE)
+
+
+LIST (APPEND SOURCES
+      ${SOURCES_PE}
+      ${SOURCES_NB}
+      ${SOURCES_BN}
+     )
+
+ADD_LIBRARY(${fw_name} SHARED ${SOURCES})
+
+TARGET_LINK_LIBRARIES(${PROJECT_NAME} ${fw_name_LDFLAGS} "-lsqlite3 -lpthread -ldl -lglib-2.0 -ldlog")
+INSTALL(TARGETS ${fw_name} DESTINATION ${LIB})
+
+INSTALL(
+        DIRECTORY ${INC_DIR}/ DESTINATION include/
+        FILES_MATCHING
+        PATTERN "${INC_DIR}/*.h"
+        )
+
+SET(PC_NAME ${fw_name})
+SET(PC_REQUIRED ${pc_dependents})
+SET(PC_LDFLAGS -l${fw_name})
+
+CONFIGURE_FILE(
+    ${fw_name}.pc.in
+    ${CMAKE_CURRENT_SOURCE_DIR}/${fw_name}.pc
+    @ONLY
+)
+INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/${fw_name}.pc DESTINATION ${LIB}/pkgconfig)
+
+IF ("${ENABLE_TEST}" STREQUAL "Y")
+    ADD_SUBDIRECTORY(test)
+ENDIF()
diff --git a/LICENSE b/LICENSE
new file mode 100755 (executable)
index 0000000..9c13a9b
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,204 @@
+Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.\r
+\r
+                                 Apache License\r
+                           Version 2.0, January 2004\r
+                        http://www.apache.org/licenses/\r
+\r
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\r
+\r
+   1. Definitions.\r
+\r
+      "License" shall mean the terms and conditions for use, reproduction,\r
+      and distribution as defined by Sections 1 through 9 of this document.\r
+\r
+      "Licensor" shall mean the copyright owner or entity authorized by\r
+      the copyright owner that is granting the License.\r
+\r
+      "Legal Entity" shall mean the union of the acting entity and all\r
+      other entities that control, are controlled by, or are under common\r
+      control with that entity. For the purposes of this definition,\r
+      "control" means (i) the power, direct or indirect, to cause the\r
+      direction or management of such entity, whether by contract or\r
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the\r
+      outstanding shares, or (iii) beneficial ownership of such entity.\r
+\r
+      "You" (or "Your") shall mean an individual or Legal Entity\r
+      exercising permissions granted by this License.\r
+\r
+      "Source" form shall mean the preferred form for making modifications,\r
+      including but not limited to software source code, documentation\r
+      source, and configuration files.\r
+\r
+      "Object" form shall mean any form resulting from mechanical\r
+      transformation or translation of a Source form, including but\r
+      not limited to compiled object code, generated documentation,\r
+      and conversions to other media types.\r
+\r
+      "Work" shall mean the work of authorship, whether in Source or\r
+      Object form, made available under the License, as indicated by a\r
+      copyright notice that is included in or attached to the work\r
+      (an example is provided in the Appendix below).\r
+\r
+      "Derivative Works" shall mean any work, whether in Source or Object\r
+      form, that is based on (or derived from) the Work and for which the\r
+      editorial revisions, annotations, elaborations, or other modifications\r
+      represent, as a whole, an original work of authorship. For the purposes\r
+      of this License, Derivative Works shall not include works that remain\r
+      separable from, or merely link (or bind by name) to the interfaces of,\r
+      the Work and Derivative Works thereof.\r
+\r
+      "Contribution" shall mean any work of authorship, including\r
+      the original version of the Work and any modifications or additions\r
+      to that Work or Derivative Works thereof, that is intentionally\r
+      submitted to Licensor for inclusion in the Work by the copyright owner\r
+      or by an individual or Legal Entity authorized to submit on behalf of\r
+      the copyright owner. For the purposes of this definition, "submitted"\r
+      means any form of electronic, verbal, or written communication sent\r
+      to the Licensor or its representatives, including but not limited to\r
+      communication on electronic mailing lists, source code control systems,\r
+      and issue tracking systems that are managed by, or on behalf of, the\r
+      Licensor for the purpose of discussing and improving the Work, but\r
+      excluding communication that is conspicuously marked or otherwise\r
+      designated in writing by the copyright owner as "Not a Contribution."\r
+\r
+      "Contributor" shall mean Licensor and any individual or Legal Entity\r
+      on behalf of whom a Contribution has been received by Licensor and\r
+      subsequently incorporated within the Work.\r
+\r
+   2. Grant of Copyright License. Subject to the terms and conditions of\r
+      this License, each Contributor hereby grants to You a perpetual,\r
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\r
+      copyright license to reproduce, prepare Derivative Works of,\r
+      publicly display, publicly perform, sublicense, and distribute the\r
+      Work and such Derivative Works in Source or Object form.\r
+\r
+   3. Grant of Patent License. Subject to the terms and conditions of\r
+      this License, each Contributor hereby grants to You a perpetual,\r
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\r
+      (except as stated in this section) patent license to make, have made,\r
+      use, offer to sell, sell, import, and otherwise transfer the Work,\r
+      where such license applies only to those patent claims licensable\r
+      by such Contributor that are necessarily infringed by their\r
+      Contribution(s) alone or by combination of their Contribution(s)\r
+      with the Work to which such Contribution(s) was submitted. If You\r
+      institute patent litigation against any entity (including a\r
+      cross-claim or counterclaim in a lawsuit) alleging that the Work\r
+      or a Contribution incorporated within the Work constitutes direct\r
+      or contributory patent infringement, then any patent licenses\r
+      granted to You under this License for that Work shall terminate\r
+      as of the date such litigation is filed.\r
+\r
+   4. Redistribution. You may reproduce and distribute copies of the\r
+      Work or Derivative Works thereof in any medium, with or without\r
+      modifications, and in Source or Object form, provided that You\r
+      meet the following conditions:\r
+\r
+      (a) You must give any other recipients of the Work or\r
+          Derivative Works a copy of this License; and\r
+\r
+      (b) You must cause any modified files to carry prominent notices\r
+          stating that You changed the files; and\r
+\r
+      (c) You must retain, in the Source form of any Derivative Works\r
+          that You distribute, all copyright, patent, trademark, and\r
+          attribution notices from the Source form of the Work,\r
+          excluding those notices that do not pertain to any part of\r
+          the Derivative Works; and\r
+\r
+      (d) If the Work includes a "NOTICE" text file as part of its\r
+          distribution, then any Derivative Works that You distribute must\r
+          include a readable copy of the attribution notices contained\r
+          within such NOTICE file, excluding those notices that do not\r
+          pertain to any part of the Derivative Works, in at least one\r
+          of the following places: within a NOTICE text file distributed\r
+          as part of the Derivative Works; within the Source form or\r
+          documentation, if provided along with the Derivative Works; or,\r
+          within a display generated by the Derivative Works, if and\r
+          wherever such third-party notices normally appear. The contents\r
+          of the NOTICE file are for informational purposes only and\r
+          do not modify the License. You may add Your own attribution\r
+          notices within Derivative Works that You distribute, alongside\r
+          or as an addendum to the NOTICE text from the Work, provided\r
+          that such additional attribution notices cannot be construed\r
+          as modifying the License.\r
+\r
+      You may add Your own copyright statement to Your modifications and\r
+      may provide additional or different license terms and conditions\r
+      for use, reproduction, or distribution of Your modifications, or\r
+      for any such Derivative Works as a whole, provided Your use,\r
+      reproduction, and distribution of the Work otherwise complies with\r
+      the conditions stated in this License.\r
+\r
+   5. Submission of Contributions. Unless You explicitly state otherwise,\r
+      any Contribution intentionally submitted for inclusion in the Work\r
+      by You to the Licensor shall be under the terms and conditions of\r
+      this License, without any additional terms or conditions.\r
+      Notwithstanding the above, nothing herein shall supersede or modify\r
+      the terms of any separate license agreement you may have executed\r
+      with Licensor regarding such Contributions.\r
+\r
+   6. Trademarks. This License does not grant permission to use the trade\r
+      names, trademarks, service marks, or product names of the Licensor,\r
+      except as required for reasonable and customary use in describing the\r
+      origin of the Work and reproducing the content of the NOTICE file.\r
+\r
+   7. Disclaimer of Warranty. Unless required by applicable law or\r
+      agreed to in writing, Licensor provides the Work (and each\r
+      Contributor provides its Contributions) on an "AS IS" BASIS,\r
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\r
+      implied, including, without limitation, any warranties or conditions\r
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\r
+      PARTICULAR PURPOSE. You are solely responsible for determining the\r
+      appropriateness of using or redistributing the Work and assume any\r
+      risks associated with Your exercise of permissions under this License.\r
+\r
+   8. Limitation of Liability. In no event and under no legal theory,\r
+      whether in tort (including negligence), contract, or otherwise,\r
+      unless required by applicable law (such as deliberate and grossly\r
+      negligent acts) or agreed to in writing, shall any Contributor be\r
+      liable to You for damages, including any direct, indirect, special,\r
+      incidental, or consequential damages of any character arising as a\r
+      result of this License or out of the use or inability to use the\r
+      Work (including but not limited to damages for loss of goodwill,\r
+      work stoppage, computer failure or malfunction, or any and all\r
+      other commercial damages or losses), even if such Contributor\r
+      has been advised of the possibility of such damages.\r
+\r
+   9. Accepting Warranty or Additional Liability. While redistributing\r
+      the Work or Derivative Works thereof, You may choose to offer,\r
+      and charge a fee for, acceptance of support, warranty, indemnity,\r
+      or other liability obligations and/or rights consistent with this\r
+      License. However, in accepting such obligations, You may act only\r
+      on Your own behalf and on Your sole responsibility, not on behalf\r
+      of any other Contributor, and only if You agree to indemnify,\r
+      defend, and hold each Contributor harmless for any liability\r
+      incurred by, or claims asserted against, such Contributor by reason\r
+      of your accepting any such warranty or additional liability.\r
+\r
+   END OF TERMS AND CONDITIONS\r
+\r
+   APPENDIX: How to apply the Apache License to your work.\r
+\r
+      To apply the Apache License to your work, attach the following\r
+      boilerplate notice, with the fields enclosed by brackets "[]"\r
+      replaced with your own identifying information. (Don't include\r
+      the brackets!)  The text should be enclosed in the appropriate\r
+      comment syntax for the file format. We also recommend that a\r
+      file or class name and description of purpose be included on the\r
+      same "printed page" as the copyright notice for easier\r
+      identification within third-party archives.\r
+\r
+   Copyright [yyyy] [name of copyright owner]\r
+\r
+   Licensed under the Apache License, Version 2.0 (the "License");\r
+   you may not use this file except in compliance with the License.\r
+   You may obtain a copy of the License at\r
+\r
+       http://www.apache.org/licenses/LICENSE-2.0\r
+\r
+   Unless required by applicable law or agreed to in writing, software\r
+   distributed under the License is distributed on an "AS IS" BASIS,\r
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+   See the License for the specific language governing permissions and\r
+   limitations under the License.\r
+\r
diff --git a/NOTICE b/NOTICE
new file mode 100755 (executable)
index 0000000..0e0f016
--- /dev/null
+++ b/NOTICE
@@ -0,0 +1,3 @@
+Copyright (c) Samsung Electronics Co., Ltd. All rights reserved.
+Except as noted, this software is licensed under Apache License, Version 2.
+Please, see the LICENSE.APLv2 file for Apache License terms and conditions.
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..0b56d7a
--- /dev/null
+++ b/README.md
@@ -0,0 +1,47 @@
+## GenericClassifier on Tizen\r
+\r
+* The given project classifies text into 15 categories\r
+* Recommended Tizen Version: 5.0\r
+* Recommended Platform Image version : TIZEN-5.0-need to be updated\r
+\r
+## Module mapping with Source files\r
+\r
+* GenericClassifier consist of following APIs\r
+  * text_classifier_initialize()\r
+  * text_classifier_deinitialize()\r
+  * text_classifier_create()\r
+  * text_classifier_delete()\r
+  * text_classifier_get_category()\r
+  * text_classifier_add_category()\r
+  * text_classifier_delete_category()\r
+  * text_classifier_update_category()\r
+\r
+* src folder contains all the module implementation\r
+  * persistentStorage.cpp contains the functionality for database handling.\r
+  * dataPreprocessing.cpp processes upon the raw text to extract important words which would be used for classification.\r
+  * Classifier.cpp implments the logic for classifying text into predefined categories.\r
+  * generic_classifier.c exposes the APIs. \r
+* Header files corresponding to modules are put in include folder,  \r
+  API description corresponding to module is provided in corresponding header file.\r
+\r
+## GenericClassifier on Tizen build steps\r
+* Step 1: Build "Generic Text Classifier on Tizen" Project\r
+  * Get the source codes\r
+  ```console\r
+  $ git clone https://review.tizen.org/gerrit/p/platform/core/api/generic-text-classifier\r
+  $ cd generic_text_classifier\r
+  ```\r
+  * Build "GenericTextClassifier on Tizen" Project\r
+  ```console\r
+  $ gbs build --include-all -A armv7l\r
+  ```\r
+  * Install the rpm created generic_text_classifier by using the command "rpm -Uvh --force --nodeps <rpm_name>".\r
+  * When above rpm is installed on a Tizen device, libgeneric_text_classifier.so will be created at the path "/usr/lib".\r
+\r
+  * To build and run the gc_unit_test test applications applications, the following build command needs to be used\r
+  ```console\r
+  $ gbs build --include-all -A armv7l --define 'enable_test "Y"'\r
+  ```\r
+## Running test application for GenericClassifier on Tizen\r
+  * Run the application unit test application "/usr/bin/gc_unit_test".\r
+\r
diff --git a/generic_text_classifier.pc.in b/generic_text_classifier.pc.in
new file mode 100644 (file)
index 0000000..eae246d
--- /dev/null
@@ -0,0 +1,13 @@
+# Package Information for pkg-config
+
+prefix=@PREFIX@
+exec_prefix=/usr
+libdir=@LIB_INSTALL_DIR@
+includedir=@INCLUDE_INSTALL_DIR@/
+
+Name: @PC_NAME@
+Description: @PACKAGE_DESCRIPTION@
+Version: @VERSION@
+Requires: @PC_REQUIRED@
+Libs: -L${libdir} @PC_LDFLAGS@
+Cflags: -I${includedir}
diff --git a/include/gc_categorization.h b/include/gc_categorization.h
new file mode 100644 (file)
index 0000000..ecb6cdf
--- /dev/null
@@ -0,0 +1,186 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * @file gc_categorization.h
+ * @brief API to add, delete user and get classification of categories.
+ * @internal
+ * @ingroup     CAPI_GENERIC_CLASSIFIER_MODULE
+ */
+
+#ifndef TIZEN_GC_CATEGORIZATION_H
+#define TIZEN_GC_CATEGORIZATION_H
+
+#include <vector>
+#include <string>
+#include <iostream>
+#include <math.h>
+#include <algorithm>
+
+using namespace std;
+
+/**
+ * @brief   This enum defines different possible error during API call.
+ */
+enum error_type {
+       GC_ERROR_CODE_USER_NOT_FOUND,
+       GC_ERROR_CODE_TEXT_IS_NULL,
+       GC_ERROR_CODE_LIST_CONTAINS_NULL,
+       GC_ERROR_CODE_UNKNOWN
+};
+
+/**
+ * @brief   This class defines the result data returned by different API calls.
+ * @detail  This class contains error type, success(true/false), category_score_vec vector of float and
+ *          category_name_vec vector of string. By default success is set to false and error is set to
+ *          GC_ERROR_CODE_UNKNOWN.
+ */
+class classificationResult
+{
+       public:
+               /* bool value which defines whether API was successful(true value) or failed(false value)*/
+               bool m_classification_api_sucess_state;
+
+               /* enum value which defines different possible error value during API call*/
+               error_type m_classification_api_error;
+
+               /**
+                * Vector of float value, which defines ranks of differnt text in getProfileInference API
+                * in the same order as the text is paased in function argument or ranking of History based
+                * text in getHistoryInference API, depending on which APIs return value is being processed.
+                */
+               vector<float> category_score_vec;
+
+               /**
+                * Vector of string value, which defines entryID of history records in user history
+                * acorresponding to the Hitory records renking mentioned in valiable retVal. This member
+                * variable is irelevant when return value of getHistoryReference API is being processed.
+                */
+               vector<string> category_name_vec;
+
+               /**
+                * default constructor of classificationResult, by default success member variable is set to false and
+                * error is set to GC_ERROR_CODE_UNKNOWN.
+                */
+               classificationResult();
+};
+
+/**
+ * @brief   This class manages the APIs to interact with SQLITE3 database.
+ * @detail  This class contains APIs to OPEN DB, CREATE DB TABLES(User Data, User Profile Data,
+ *          User KeyWord Data, User History Data), INSERT, FETCH, UPDATE and DELETE table data and
+ *          DELETE DB and CLOSE DB Connection.
+ *          *Note - This class is defined in some other header file(gc_persistent_storage.h).
+ */
+class PersistentStorage;
+
+/**
+ * @brief   This class is collection of user profile data.
+ * @detail  This class contains a profile(vector of float) which represent the User Profile.
+ *          It contains wordCount integer value, which represent the total words used in profile
+ *          computation. timeStamp string value which represent the last profile update time.
+ *          *Note - This class is defined in some other header file(gc_persistent_storage.h).
+ */
+class CategoryProfile;
+
+/**
+ * @brief   This class is collection of Interface APIs exposed by library to application.
+ * @detail  This class definition contains implementation of URL Recommend class which contains the
+ *          interface to manage user, manage user profile and history data and provide inference
+ *          based on Profile and history data.
+ */
+class Classifier
+{
+       public:
+               /**
+                * @brief   This function is responsible to delete all the data in database(all profile and
+                *          history records for default user as well as all specific users).
+                */
+               classificationResult resetSystemData();
+
+               /**
+                * @brief   This function is responsible to update category profile based on text provided as
+                *          input argument.
+                */
+               int updateCategory(const string userID, const string categoryID, const char* text);
+
+               /**
+                * @brief   This function is responsible to add a new user defined category to its list.
+                *          The new category is provided as input argument.
+                */
+               int addCategory(const string userID, const string category);
+
+               /**
+                * @brief   This function is responsible to delete the specified category profile.
+                *          The category is provided as input argument.
+                */
+               int deleteCategory(const string userID, const string category);
+
+               /**
+                * @brief   This function is responsible to rank, based on similarity with the userProfile build
+                *          till the time API is called, provided collection of text data.
+                */
+               classificationResult getCategoryInference(const string userID, const char* inputText);
+
+               /**
+                * @brief   This function is responsible for setting a flag that indicates that application
+                *          wants to terminate the function as soon as possible.
+                * @return  NA
+                */
+               void cancelThread();
+
+               /**
+                * @brief   This function is default constructor of the class Classifier. It sets cancel flag
+                *          to a default value of false.
+                * @param   [out] NA
+                * @return  NA
+                */
+               Classifier();
+
+       private:
+
+               vector<pair<string, vector<float>>> catProf;
+
+               /**
+                * @brief   This function is responsible to compute mean of words embeddings for a set of words.
+                * @param   [in] PersistentStorage&, reference to data base access interface.
+                * @param   [in] vector<string>&, collection of words wor which mean has to be calculated.
+                * @param   [out] NA
+                * @return  vector<float>, mean of numerical representation of set of input words.
+                */
+               vector<float> computeMean(PersistentStorage& ps, const vector<string>& words);
+
+               /**
+                * @brief   This function is responsible to compute cosine similarity for two given vectors.
+                * @param   [in] vector<float>&, first input vector.
+                * @param   [in] vector<float>&, second input vector.
+                * @param   [out] NA
+                * @return  float, cosine distance between two given vectors.
+                */
+               float computeCosine(const vector<float>& A, const vector<float>& B);
+
+               /**
+                * @brief   This function is responsible for resetting a flag that indicates that application
+                *          wants to terminate the function as soon as possible.
+                * @param   [out] NA
+                * @return  NA
+                */
+               void resetCancelFlag();
+
+               bool cancelFlag;
+};
+
+#endif /* TIZEN_GC_CATEGORIZATION_H */
diff --git a/include/gc_common.h b/include/gc_common.h
new file mode 100644 (file)
index 0000000..74a752f
--- /dev/null
@@ -0,0 +1,66 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * @file gc_common.h
+ * @brief contains common function used for classification.
+ * @ingroup     CAPI_GENERIC_CLASSIFIER_MODULE
+ */
+
+#ifndef __TIZEN_GC_COMMON_H__
+#define __TIZEN_GC_COMMON_H__
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif /* __cplusplus */
+
+#include <string.h>
+
+#include "gc_internal.h"
+
+#define MAX_CATEGORY_LEN 30
+
+#define GC_CHECK_INPUT_PARAMETER(arg) \
+       if (arg == NULL) { \
+               return GC_ERROR_INVALID_PARAMETER; \
+       }
+
+#define GC_CHECK_INPUT_PARAMETER_UINT(arg) \
+       if (arg < 1) { \
+               return GC_ERROR_INVALID_PARAMETER; \
+       }
+
+#define GC_CHECK_INIT_STATUS() \
+       if (_gc_check_init_status() == GC_ERROR_INITIALIZATION_NOT_DONE) { \
+               return GC_ERROR_INITIALIZATION_NOT_DONE; \
+       }
+
+#define GC_CHECK_HANDLE_CREATION() \
+       if (_gc_check_handle_creation() == GC_ERROR_HANDLE_NOT_CREATED) { \
+               return GC_ERROR_HANDLE_NOT_CREATED; \
+       }
+
+#define GC_CHECK_HANDLE_VALIDITY(arg) \
+       if (_gc_check_handle_validity(arg) == GC_ERROR_HANDLE_NOT_VALID) { \
+               return GC_ERROR_HANDLE_NOT_VALID; \
+       }
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __TIZEN_GC_COMMON_H__ */
diff --git a/include/gc_data_preprocessing.h b/include/gc_data_preprocessing.h
new file mode 100644 (file)
index 0000000..4a4b2f4
--- /dev/null
@@ -0,0 +1,50 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * @file gc_data_preprocessing.h
+ * @brief API to extract the stop words.
+ * @internal
+ * @ingroup     CAPI_GENERIC_CLASSIFIER_MODULE
+ */
+
+#ifndef DATA_PREPROCESSING_H
+#define DATA_PREPROCESSING_H
+
+#include <iostream>
+#include <sstream>
+#include <string>
+#include <vector>
+#include <algorithm>
+
+#include "gc_persistent_storage.h"
+
+using namespace std;
+
+
+/**
+* @brief   This function is responsible to preprocess the given input text, removal of stop words,
+*          separate the words in two set Keywords(words which are not present in word2vec database)
+*          and Content Words(top 50 words based on idf score, which are present in word2vec database)
+* @param   [in] string, Unique ID for User for which ranking of history record data has to
+* @param   [in] PersistentStorage&, reference to data base access interface.
+* @param   [out] NA
+* @return  pair<vector<string>, vector<string>>, pair of two string vectors, first one contains
+*          keywords and second one contains content words.
+*/
+pair<vector<string>, vector<string>> extractKeywords(const char* inputdata, PersistentStorage& ps);
+
+#endif  /* DATA_PREPROCESSING_H */
diff --git a/include/gc_inference.h b/include/gc_inference.h
new file mode 100644 (file)
index 0000000..7386c85
--- /dev/null
@@ -0,0 +1,45 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * @file gc_inference.h
+ * @brief API to get categories.
+ * @ingroup     CAPI_GENERIC_CLASSIFIER_MODULE
+ */
+
+#ifndef GC_INFERENCE_H
+#define GC_INFERENCE_H
+
+#include "gc_common.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif /* __cplusplus */
+       typedef struct {
+               char first_category[MAX_CATEGORY_LEN], second_category[MAX_CATEGORY_LEN], third_category[MAX_CATEGORY_LEN];
+               float first_category_score , second_category_score , third_category_score ;
+       } gc_get_category_result;
+
+       gc_get_category_result get_category(char *uID, char *appID, char *text);
+       int add_category(char *appID, char *uID, char *category_name);
+       int delete_category(char *appID, char *uID, char *category_name);
+       int update_category(char *appID, char *uID, char *category_name, char *text_data, int text_data_len);
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* GC_INFERENCE_H */
diff --git a/include/gc_internal.h b/include/gc_internal.h
new file mode 100644 (file)
index 0000000..703d956
--- /dev/null
@@ -0,0 +1,62 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * @file gc_internal.h
+ * @brief Internal implementation of public API's.
+ * @internal
+ * @ingroup     CAPI_GENERIC_CLASSIFIER_MODULE
+ */
+
+#ifndef __TIZEN_GENERIC_CLASSIFIER_INTERNAL_H__
+#define __TIZEN_GENERIC_CLASSIFIER_INTERNAL_H__
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif /* __cplusplus */
+
+#include "generic_text_classifier.h"
+#include "generic_text_classifier_type.h"
+#include "gc_private.h"
+
+       int _initialize(void);
+
+       int _deinitialize(void);
+
+       int _create_classifier(gc_classifier_h *classifier_handle, char *app_id, char *user_id);
+
+       int _delete_classifier(gc_classifier_h *classifier_handle);
+
+       int _get_category(gc_classifier_s *classifier_handle, char *text_data, int text_data_len, gc_category_s *category_list);
+
+       int _gc_check_init_status(void);
+
+       int _gc_check_handle_creation(void);
+
+       int _gc_check_handle_validity(gc_classifier_h *classifier_handle);
+
+       int _add_category(gc_classifier_s *classifier_handle, char *category_name);
+
+       int _delete_category(gc_classifier_s *classifier_handle, char *category_name);
+
+       int _update_category(gc_classifier_s *classifier_handle, char *category_name, char *text_data, int text_data_len);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __TIZEN_GENERIC_CLASSIFIER_TYPE_H__ */
diff --git a/include/gc_persistent_storage.h b/include/gc_persistent_storage.h
new file mode 100644 (file)
index 0000000..8eed359
--- /dev/null
@@ -0,0 +1,386 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+*/
+
+/**
+ * @file gc_persistent_storage.h
+ * @brief API to implement sqlite3 database query.
+ * @internal
+ * @ingroup     CAPI_GENERIC_CLASSIFIER_MODULE
+ */
+
+#ifndef TIZEN_PERSISTENT_STORAGE_H
+#define TIZEN_PERSISTENT_STORAGE_H
+
+#include <sqlite3.h>
+#include <stdlib.h>
+
+#include <string>
+#include <vector>
+#include <iostream>
+#include <sstream>
+
+#define W2VDIM 300
+
+using namespace std;
+
+/**
+ * @brief   This class is collection of user profile data.
+ * @detail  This class contains a profile(vector of float) which represent the User Profile.
+ *          It contains wordCount integer value, which represent the total words used in profile
+ *          computation. timeStamp string value which represent the last profile update time.
+ */
+class CategoryProfile
+{
+       public:
+
+               /**
+                * It is the vector of 300 float value which represent the user profile based on all the
+                * keywords and content words fetched from web pages he has visited till the last time stamp value.
+                */
+               vector<float> profile;
+
+               /**
+                * Represent the total number of words used for user profile computation, fetched from visited
+                * web pages.
+                */
+               int wordCount;
+
+               /**
+                * categoryName string value which represent the name of the category as provided by the user
+                */
+               string categoryName;
+
+               /**
+                * @brief   This function implements public constructor for CategoryProfile class.
+                *          It initializes its data member wordCount and categoryName to some default value.
+                * @param   [in]     NA
+                * @param   [out]    NA
+                * @return  NA
+                */
+               CategoryProfile() : wordCount(0), categoryName(""){}
+};
+
+/**
+ * @brief   This class manages the APIs to interact with SQLITE3 database.
+ * @detail  This class contains APIs to OPEN DB, CREATE DB TABLES(User Data, User Profile Data,
+ *          User KeyWord Data, User History Data), INSERT, FETCH, UPDATE and DELETE table data and
+ *          DELETE DB and CLOSE DB Connection.
+ */
+class PersistentStorage 
+{
+       public:
+               /**
+                * @brief   This function is responsible to check whether the the given word has embedding
+                *          in word2vec dataset or not.
+                * @param   [in]  const vector<string>&, vector of words string for which embeddings has to be
+                *                checked.
+                * @param   [out] NA
+                * @return  vector<tuple<float, bool, bool>>, vector of tuple of float value and 2 boolean values. Each
+                *          entry in return vector correspond to a word in input word vector. Each tuple represents
+                *          whether embedding corresponding to word exist or not if exist then corresponding idf
+                *          value other default(0.0) value and whether the words exists in English Dictionary.
+                */
+               vector<tuple<float, bool, bool>> checkWordEmbedding(const vector<string>& words);
+
+               /**
+                * @brief   This function is responsible to get the word embeddings for given word from word2vec
+                *          dataset.
+                * @param   [in]  const vector<string>&, vector of words string for which embeddings has to be gotten.
+                * @param   [out] NA
+                * @return  vector<vector<float>>, vector of word embeddings corresponding to each word present
+                *          in input vector. Each embedding vector consist of 300 float values.
+                */
+               vector<vector<float>> getWordEmbedding(const vector<string>& words);
+
+               /**
+                * @brief   This function is responsible to get the user profile for a given user with given userID.
+                * @param   [in]  string, Unique ID for User, for which profile has to be fetched.
+                * @param   [out] NA
+                * @return  UserProfile, return user profile corresponding to the given user.
+                */
+               vector<pair<string, vector<float>>> getAllCategoryProfile();
+
+               /**
+                * @brief   This function is responsible to get all the user defined category profile for a given userID.
+                * @param   [in]  string, Unique ID for User, for which profile has to be fetched.
+                * @param   [out] NA
+                * @return  UserProfile, return user profile corresponding to the given user.
+                */
+               vector<pair<string, vector<float>>> getAllUserCategoryProfile(const string& UserID);
+
+               /**
+                * @brief   This function is responsible to get the user profile for a given user with given userID.
+                * @param   [in]  string, Unique ID for User, for which profile has to be fetched.
+                * @param   [out] NA
+                * @return  UserProfile, return user profile corresponding to the given user.
+                */
+               CategoryProfile getCategoryProfile(const string& userID);
+
+               /**
+                * @brief   This function is responsible to update the user profile for a given userID.
+                * @param   [in]  string, Unique ID for User, for which profile has to be fetched.
+                * @param   [in]  categoryprofile object that contains category information
+                * @param   [out] NA
+                * @return  UserProfile, return user profile corresponding to the given user.
+                */
+               int updateCategoryProfile(const string& userID, const CategoryProfile& categoryProfile);
+
+               /**
+                * @brief   This function is responsible to add a new category to a given userID.
+                * @param   [in]  string, Unique ID for User, for which profile has to be added.
+                * @param   [in]  string, category to be added.
+                * @param   [out] NA
+                * @return  UserProfile, return user profile corresponding to the given user.
+                */
+               int addCategoryProfile(const string& userID, const string& category);
+
+               /**
+                * @brief   This function is responsible to delete a new category from a given userID.
+                * @param   [in]  string, Unique ID for User, for which profile has to be deleted.
+                * @param   [in]  string, category to be deleted.
+                * @param   [out] NA
+                * @return  UserProfile, return user profile corresponding to the given user.
+                */
+               int deleteCategoryProfile(const string& userID, const string& category);
+
+               /**
+                * @brief   This function implements private constructor for PersistentStorage class
+                *          so it can't be created either by new or just creating an object.
+                * @param   [in]     NA
+                * @param   [out]    NA
+                * @return  NA
+                */
+               PersistentStorage();
+
+               /**
+                * @brief   This function implements private destructor of PersistentStorage class
+                * @param   [in]     NA
+                * @param   [out]    NA
+                * @return  NA
+                */
+               ~PersistentStorage();
+
+       private:
+
+               /**
+                * @brief   This function opens database connection and creates UserData and UserProfileData
+                *          and UserHIstoryData tables, which contains user specific profile and web browsing
+                *          history data.
+                * @param   [in]    NA
+                * @param   [out]   NA
+                * @return  int, 0 : if DB created successfully > 0 : query got error
+                */
+               int createDB();
+
+               /**
+                * @brief   This function implements the logic to execute sqlite query and checks return value.
+                *          actual sql query is stored in queryBuffer char array argument variable and database
+                *          connection is stored in db variable which it uses.
+                * @param   [in] Pointer to an callback function which returns int and takes void*, int,
+                *          char**, char** as input parameter.
+                * @param   [in] void*, data structure passed at the time of calling sqlite3 API to store
+                *               the returned result
+                * @param   [in] char*, query data to be executed.
+                * @param   [out] NA
+                * @return  int, 0 : if query execution successfully > 0 : query got error
+                */
+               int executeQuery(sqlite3* db, int (*callback)(void*,int,char**,char**), void* data, char* queryBuffer);
+
+               /**
+                * @brief   This function implements a generic callback function for sqlite3 APIs for
+                *          which return values processing is not required
+                * @param   [in]   void*, data structure passed at the time of calling sqlite3 API to store
+                *                 the returned result
+                * @param   [in]   int, number of values contained in a record
+                * @param   [in]   char**, values contained in a record as a return of query execution
+                * @param   [in]   char**, this column name corresponding to the values in record
+                * @param   [out]  NA
+                * @return  int,   0 : for successful processing of query result, otherwise query result processing
+                *                 encountered as error scenario.
+                */
+               static int commonCB(void* data, int argc, char** argv, char** azColName);
+
+               /**
+                * @brief   This function implements a callback to process the result of query which checks whether
+                *          a given word exist in word2vec DB or not if exist then it gets corresponding word's
+                *          idf score.
+                * @param   [in]   void*, data structure passed at the time of calling sqlite3 API to store
+                *                 the returned result
+                * @param   [in]   int, number of values contained in a record
+                * @param   [in]   char**, values contained in a record as a return of query execution
+                * @param   [in]   char**, this column name corresponding to the values in record
+                * @param   [out]  NA
+                * @return  int,   0 : for successful processing of query result, otherwise query result processing
+                *                 encountered as error scenario.
+                */
+               static int checkWordEmbeddingDataCB(void *data, int argc, char **argv, char **azColName);
+
+               /**
+                * @brief   This function implements a callback to process the result of query to get the embeddings
+                *          of a given word in word2vec DB.
+                * @param   [in]   void*, data structure passed at the time of calling sqlite3 API to store
+                *                 the returned result
+                * @param   [in]   int, number of values contained in a record
+                * @param   [in]   char**, values contained in a record as a return of query execution
+                * @param   [in]   char**, this column name corresponding to the values in record
+                * @param   [out]  NA
+                * @return  int,   0 : for successful processing of query result, otherwise query result processing
+                *                 encountered as error scenario.
+                */
+               static int embeddingDataCB(void *data, int argc, char **argv, char **azColName);
+
+               /**
+                * @brief   This function implements a callback to process the result of query to get the User
+                *          Keyword Data for a given user.
+                * @param   [in]   void*, data structure passed at the time of calling sqlite3 API to store
+                *                 the returned result
+                * @param   [in]   int, number of values contained in a record
+                * @param   [in]   char**, values contained in a record as a return of query execution
+                * @param   [in]   char**, this column name corresponding to the values in record
+                * @param   [out]  NA
+                * @return  int,   0 : for successful processing of query result, otherwise query result processing
+                *                 encountered as error scenario.
+                */
+               static int getKeyWordsInfoCB(void *data, int argc, char **argv, char **azColName);
+
+               /**
+                * @brief   This function implements a callback to process the result of query to get the User
+                *          History Data for a given user.
+                * @param   [in]   void*, data structure passed at the time of calling sqlite3 API to store
+                *                 the returned result
+                * @param   [in]   int, number of values contained in a record
+                * @param   [in]   char**, values contained in a record as a return of query execution
+                * @param   [in]   char**, this column name corresponding to the values in record
+                * @param   [out]  NA
+                * @return  int,   0 : for successful processing of query result, otherwise query result processing
+                *                 encountered as error scenario.
+                */
+               static int checkUserHistoryDataCB(void *data, int argc, char **argv, char **azColName);
+
+               /**
+                * @brief   This function implements a callback to process the result of query to get the category
+                *          data for all general categories.
+                * @param   [in]   void*, data structure passed at the time of calling sqlite3 API to store
+                *                 the returned result
+                * @param   [in]   int, number of values contained in a record
+                * @param   [in]   char**, values contained in a record as a return of query execution
+                * @param   [in]   char**, this column name corresponding to the values in record
+                * @param   [out]  NA
+                * @return  int,   0 : for successful processing of query result, otherwise query result processing
+                *                 encountered as error scenario.
+                */
+               static int getAllCategoryProfileCB(void *data, int argc, char **argv, char **azColName);
+
+               /**
+                * @brief   This function implements a callback to process the result of query to get the category
+                *          profiles for every user defined category of a user.
+                * @param   [in]   void*, data structure passed at the time of calling sqlite3 API to store
+                *                 the returned result
+                * @param   [in]   int, number of values contained in a record
+                * @param   [in]   char**, values contained in a record as a return of query execution
+                * @param   [in]   char**, this column name corresponding to the values in record
+                * @param   [out]  NA
+                * @return  int,   0 : for successful processing of query result, otherwise query result processing
+                *                 encountered as error scenario.
+                */
+               static int getAllUserCategoryProfileCB(void *data, int argc, char **argv, char **azColName);
+
+               /**
+                * @brief   This function implements a callback to process the result of query to get the data
+                *          of a given category.
+                * @param   [in]   void*, data structure passed at the time of calling sqlite3 API to store
+                *                 the returned result
+                * @param   [in]   int, number of values contained in a record
+                * @param   [in]   char**, values contained in a record as a return of query execution
+                * @param   [in]   char**, this column name corresponding to the values in record
+                * @param   [out]  NA
+                * @return  int,   0 : for successful processing of query result, otherwise query result processing
+                *                 encountered as error scenario.
+                */
+               static int getCategoryProfileCB(void *data, int argc, char **argv, char **azColName);
+
+               /**
+                * Contains a handle to connection of a word2vec DataBase.
+                */
+               sqlite3* w2v_db;
+
+               /**
+                * Contains name of word2vec dataBase.
+                */
+               const string W2V_DATABASE_NAME;
+
+               /**
+                * Contains name of user profile dataBase.
+                */
+               const string USER_DATABASE_NAME;
+
+               /**
+                * These member variables contains name of the tables containing user data.
+                */
+               const string TABLE_USER_DATA;
+
+               /**
+                * These member variables contains name of the tables containing user profile data.
+                */
+               const string TABLE_USER_PROFILE_DATA;
+
+               /**
+                * These member variables contains name of the tables containing user keywords data.
+                */
+               const string TABLE_USER_KEYWORD_DATA;
+
+               /**
+                * These member variables contains name of the tables containing user web browsing history data.
+                */
+               const string TABLE_USER_HISTORY_DATA;
+
+               /**
+                * This const member variable of string type contains the value of userID which appears in all
+                * tables, UserData, UserProfileData, UserKeyWordsData and UserHistoryData.
+                */
+               const string KEY_USERID;
+
+               /**
+                * This const member variable of string type contains the value of word which appears in
+                * UserKeyWordsData table.
+                */
+               const string KEY_WORD;
+
+               /**
+                * This const member variable of string type contains the value of category which appears in
+                * table UserProfileData.
+                */
+               const string KEY_CATEGORY;
+
+               /**
+                * This const member variable of string type contains the value of timeStamp which appears in
+                * tables, UserKeyWordsData and UserProfileData.
+                */
+               const string KEY_WORDCOUNT;
+
+               /**
+                * This const member variable of string type contains the value of history record ID which appears
+                * in table UserHistoryData.
+                */
+               const string KEY_ENTRYID;
+
+               /**
+                * This const member variable of string type contains the value of all keyWords concatenated as
+                * a single string separated by ','which appears in table UserHistoryData.
+                */    
+               const string KEY_KEYWORDS;
+};
+#endif /* TIZEN_PERSISTENT_STORAGE_H */
diff --git a/include/gc_private.h b/include/gc_private.h
new file mode 100644 (file)
index 0000000..5853898
--- /dev/null
@@ -0,0 +1,44 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef __TIZEN_GC_PRIVATE_H__
+#define __TIZEN_GC_PRIVATE_H__
+
+#include <dlog.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif /* __cplusplus */
+
+#undef LOG_TAG
+#define LOG_TAG "GENERIC_CLASSIFIER"
+
+#define GC_INFO(fmt, args...) LOGI(fmt, ##args)
+#define GC_DBG(fmt, args...) LOGD(fmt, ##args)
+#define GC_ERR(fmt, args...) LOGE(fmt, ##args)
+
+       typedef struct {
+               int handle;
+               char *uID;
+               char *appID;
+       } gc_classifier_s;
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __TIZEN_GENERIC_CLASSIFIER_TYPE_H__ */
diff --git a/include/generic_text_classifier.h b/include/generic_text_classifier.h
new file mode 100644 (file)
index 0000000..43c2785
--- /dev/null
@@ -0,0 +1,224 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef __TIZEN_GENERIC_TEXT_CLASSIFIER_H__
+#define __TIZEN_GENERIC_TEXT_CLASSIFIER_H__
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif /* __cplusplus */
+
+#include "generic_text_classifier_type.h"
+       /**
+        * @file generic_text_classifier.h
+        * @brief API to create, delete category and get classification of categories.
+        * @ingroup     CAPI_GENERIC_CLASSIFIER_MODULE
+        */
+       /**
+
+        * @ingroup CAPI_GENERIC_CLASSIFIER_MODULE
+        * @brief Initializes the generic classifier module.
+        * @privlevel public
+        *
+        * @return 0 on success, otherwise a integer value is greater than zero.
+        * @retval #GC_ERROR_NONE  Successful
+        * @retval #GC_ERROR_ALREADY_DONE Initialization already completed
+        *
+        * @post after this function call user app must create a classifier through text_classifier_create CAPI.
+        * to to user further CAPIs.
+        * Once library usage is over text_classifier_deinitialize CAPI must be called.
+        *
+        * @see text_classifier_deinitialize()
+        */
+       int text_classifier_initialize(void);
+
+       /**
+        * @ingroup CAPI_GENERIC_CLASSIFIER_MODULE
+        * @brief De-Initializes the generic classifier module.
+        * @privlevel public
+        *
+        * @return 0 on success, otherwise a integer value is greater than zero.
+        * @retval #GC_ERROR_NONE  Successful
+        * @retval #GC_ERROR_ALREADY_DONE De-Initialization already completed
+        *
+        * @pre Initializatiion must have completed through text_classifier_initialize() API, before using this API.
+        *
+        * @see text_classifier_initialize()
+        */
+       int text_classifier_deinitialize(void);
+
+       /**
+        * @ingroup CAPI_GENERIC_CLASSIFIER_MODULE
+        * @brief  Create classifier handlei, which is used for further CAPI calls to use the library.
+        * @privlevel public
+        *
+        * @param[in] app_id pointer to a null terminated character array, containing unique ID for Application
+        * @param[in] user_id pointer to a null terminated character array, containing unique ID for User
+        * @param[out] classifier_handle pointer to a gc_classifier_h struct, having its members as user_id and appID
+        *
+        * @return 0 on success, otherwise a positive error value
+        * @retval #GC_ERROR_NONE  Successful
+        * @retval #GC_ERROR_ALREADY_DONE  Handle Creation already complete
+        * @retval #GC_ERROR_OUT_OF_MEMORY  System out of mamory malloc call failed
+        * @retval #GC_ERROR_INITIALIZATION_NOT_DONE Module not initialized
+        * @retval #GC_ERROR_INVALID_PARAMETER  Invalid Parameter
+        *
+        * @pre The genereic classifier module must be initialized with text_classifier_initialize().
+        * @post Once create classifier is successful, further APIs to get category or profile management canbe used.
+        * once classifier usage is over it must be deleted with text_classifier_delete API.
+        *
+        * @see text_classifier_initialize()
+        * @see text_classifier_delete()
+        */
+       int text_classifier_create(gc_classifier_h *classifier_handle, char *app_id, char *user_id);
+
+       /**
+        * @ingroup CAPI_GENERIC_CLASSIFIER_MODULE
+        * @brief delete classifier handlei, which is created with text_classifier_create(), for further CAPI calls to use the library.
+        * @privlevel public
+        *
+        * @param[in] classifier_handle pointer to a gc_classifier_h struct, having its members as user_id and appID
+        *
+        * @return 0 on success, otherwise a positive error value
+        * @retval #GC_ERROR_NONE  Successful
+        * @retval #GC_ERROR_INITIALIZATION_NOT_DONE Module not initialized
+        * @retval #GC_ERROR_INVALID_PARAMETER  Invalid Parameter
+        * @retval #GC_ERROR_HANDLE_NOT_CREATED  Handle deletion already complete or handle not created
+        * @retval #GC_ERROR_HANDLE_NOT_VALID  classifier handle don't match with created classifier handle.
+        *
+        * @pre The genereic classifier handle must be created with with text_classifier_create().
+        * @post Once delete classifier is successful, further APIs to get category or profile management canbe can't used.
+        * untill application again creates classifier handle.
+        * once classifier handle deletion is done next step is to de-initialization with text_classifier_deinitialize API.
+        *
+        * @see text_classifier_initialize()
+        * @see text_classifier_create()
+        */
+       int text_classifier_delete(gc_classifier_h *classifier_handle);
+
+       /**
+        * @ingroup CAPI_GENERIC_CLASSIFIER_MODULE
+        * @brief text_classifier_get_category get predicted categories and corresponding scores.
+        * @privlevel public
+        *
+        * @param[in] classifier_handle pointer to a gc_classifier_h struct, having its members as user_id and appID
+        * @param[in] text_data pointer to a null terminated character array, containing text data to be classified
+        * @param[in] text_data_len length of text data to be classified
+        * @param[out] category_list pointer to a gc_category_s struct, having its members as char array of top three predicted
+        * categories and corresponding scores as a float values.
+        * Category string may have below values.
+        * ADVENTURE
+        * COMICS
+        * COMPUTERS
+        * EDUCATION
+        * ENTERTAINMENT
+        * FINANCE
+        * GAMES
+        * HEALTH
+        * HOME
+        * LAW_AND_POLITICS
+        * RELIGION_AND_SPIRITUALITY
+        * SCIENCE
+        * SHOPPING
+        * SPORTS
+        * TRAVEL
+        *
+        * @return 0 on success, otherwise a positive error value
+        * @retval #GC_ERROR_NONE  Successful
+        * @retval #GC_ERROR_INITIALIZATION_NOT_DONE Module not initialized
+        * @retval #GC_ERROR_INVALID_PARAMETER  Invalid Parameter
+        * @retval #GC_ERROR_HANDLE_NOT_CREATED  Handle deletion already complete or handle not created
+        * @retval #GC_ERROR_HANDLE_NOT_VALID  classifier handle don't match with created classifier handle.
+        *
+        * @pre The initialization and genereic classifier handle must be created with gc_initialization and text_classifier_create() API
+        *
+        * @see text_classifier_initialize()
+        * @see text_classifier_create()
+        */
+       int text_classifier_get_category(gc_classifier_h *classifier_handle, char *text_data, int text_data_len, gc_category_s *category_list);
+
+       /**
+       * @ingroup CAPI_GENERIC_CLASSIFIER_MODULE
+       * @brief text_classifier_add_category add user defined category
+       * @privlevel public
+       *
+       * @param[in] classifier_handle pointer to a gc_classifier_h struct, having its members as user_id and appID
+       * @param[in] category_name pointer to a null terminated character array, containing category name
+       * @return 0 on success, otherwise a positive error value
+       * @retval #GC_ERROR_NONE  Successful
+       * @retval #GC_ERROR_INITIALIZATION_NOT_DONE Module not initialized
+       * @retval #GC_ERROR_INVALID_PARAMETER  Invalid Parameter
+       * @retval #GC_ERROR_HANDLE_NOT_CREATED  Handle deletion already complete or handle not created
+       * @retval #GC_ERROR_HANDLE_NOT_VALID  classifier handle don't match with created classifier handle.
+       *
+       * @pre The initialization and genereic classifier handle must be created with gc_initialization and text_classifier_create() API
+       *
+       * @see text_classifier_initialize()
+       * @see text_classifier_create()
+       */
+       int text_classifier_add_category(gc_classifier_h *classifier_handle, char *category_name);
+
+       /**
+       * @ingroup CAPI_GENERIC_CLASSIFIER_MODULE
+       * @brief text_classifier_delete_category delete user defined category
+       * @privlevel public
+       *
+       * @param[in] classifier_handle pointer to a gc_classifier_h struct, having its members as user_id and appID
+       * @param[in] category_name pointer to a null terminated character array, containing category name
+       * @return 0 on success, otherwise a positive error value
+       * @retval #GC_ERROR_NONE  Successful
+       * @retval #GC_ERROR_INITIALIZATION_NOT_DONE Module not initialized
+       * @retval #GC_ERROR_INVALID_PARAMETER  Invalid Parameter
+       * @retval #GC_ERROR_HANDLE_NOT_CREATED  Handle deletion already complete or handle not created
+       * @retval #GC_ERROR_HANDLE_NOT_VALID  classifier handle don't match with created classifier handle.
+       *
+       * @pre The initialization and genereic classifier handle must be created with gc_initialization and text_classifier_create() API
+       *
+       * @see text_classifier_initialize()
+       * @see text_classifier_create()
+       */
+       int text_classifier_delete_category(gc_classifier_h *classifier_handle, char *category_name);
+
+       /**
+       * @ingroup CAPI_GENERIC_CLASSIFIER_MODULE
+       * @brief text_classifier_update_category train classifier with given text_data for given category
+       * @privlevel public
+       *
+       * @param[in] classifier_handle pointer to a gc_classifier_h struct, having its members as user_id and appID
+       * @param[in] category_name pointer to a null terminated character array, containing category name
+       * @param[in] text_data pointer to a null terminated character array, containing text data which will use to train model
+       * @param[in] text_data_len length of text data to be classified
+       * @return 0 on success, otherwise a positive error value
+       * @retval #GC_ERROR_NONE  Successful
+       * @retval #GC_ERROR_INITIALIZATION_NOT_DONE Module not initialized
+       * @retval #GC_ERROR_INVALID_PARAMETER  Invalid Parameter
+       * @retval #GC_ERROR_HANDLE_NOT_CREATED  Handle deletion already complete or handle not created
+       * @retval #GC_ERROR_HANDLE_NOT_VALID  classifier handle don't match with created classifier handle.
+       *
+       * @pre The initialization and genereic classifier handle must be created with gc_initialization and text_classifier_create() API
+       *
+       * @see text_classifier_initialize()
+       * @see text_classifier_create()
+       */
+       int text_classifier_update_category(gc_classifier_h *classifier_handle, char *category_name, char *text_data, int text_data_len);
+
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __TIZEN_GENERIC_TEXT_CLASSIFIER_H__ */
diff --git a/include/generic_text_classifier_type.h b/include/generic_text_classifier_type.h
new file mode 100644 (file)
index 0000000..b66f333
--- /dev/null
@@ -0,0 +1,72 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef __TIZEN_GENERIC_CLASSIFIER_TYPE_H__
+#define __TIZEN_GENERIC_CLASSIFIER_TYPE_H__
+
+#include <stdlib.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif /* __cplusplus */
+
+       /**
+        * @file generic_text_classifier_type.h
+        * @brief API to create, delete category and get classification of categories.
+        * @ingroup     CAPI_GENERIC_CLASSIFIER_MODULE
+        */
+
+#define MAX_CATEGORY_NAME_LEN 30
+
+       /**
+        * @ingroup CAPI_GENERIC_CLASSIFIER_MODULE
+        * @brief Enumerations of classifier error codes, returned by different APIs
+        */
+       typedef enum {
+               GC_ERROR_NONE = 0x00,                   /**< Successful*/
+               GC_ERROR_INVALID_PARAMETER,             /**< Invalid parameter */
+               GC_ERROR_HANDLE_NOT_CREATED,            /**< Handle not created*/
+               GC_ERROR_HANDLE_NOT_VALID,              /**< Wrong handle passed*/
+               GC_ERROR_INITIALIZATION_NOT_DONE,       /**< Initialization not done */
+               GC_ERROR_ALREADY_DONE,                  /**< Operation already done  */
+               GC_ERROR_OUT_OF_MEMORY,                 /**< No more memory in system  */
+               GC_ERROR_UNKNOWN                        /**< Unknown error  */
+       } gc_error_e;
+
+       /**
+        * @ingroup CAPI_GENERIC_CLASSIFIER_MODULE
+        * @brief category data structure for inferenced categories.
+        * char array represent the catagory of max length MAX_CATEGORY_LEN, float values containg corresponding score.
+        * this structure containg the Top 3 inferenced categories and corresponding score.
+        */
+       typedef struct {
+               char first_category[MAX_CATEGORY_NAME_LEN], second_category[MAX_CATEGORY_NAME_LEN], third_category[MAX_CATEGORY_NAME_LEN];
+               float first_category_score;
+               float second_category_score;
+               float third_category_score;
+       } gc_category_s;
+       /**
+        * @ingroup CAPI_GENERIC_CLASSIFIER_MODULE
+        * @brief The handle to control classifier represent the user and application cambination.
+        */
+       typedef void *gc_classifier_h;
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __TIZEN_GENERIC_CLASSIFIER_TYPE_H__ */
diff --git a/packaging/generic_text_classifier.manifest b/packaging/generic_text_classifier.manifest
new file mode 100644 (file)
index 0000000..97e8c31
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+       <request>
+               <domain name="_"/>
+       </request>
+</manifest>
diff --git a/packaging/generic_text_classifier.spec b/packaging/generic_text_classifier.spec
new file mode 100644 (file)
index 0000000..c5722b3
--- /dev/null
@@ -0,0 +1,71 @@
+Name:    generic_text_classifier
+Summary: API
+Version: 1.0.0
+Release: 1
+Group:   Development/Libraries
+BuildRequires:    cmake
+BuildRequires:    pkgconfig(dlog)
+BuildRequires:    pkgconfig(sqlite3)
+BuildRequires:    pkgconfig(glib-2.0)
+Requires(post):   /sbin/ldconfig
+Requires(postun): /sbin/ldconfig
+License: Apache-2.0
+Source0: %{name}-%{version}.tar.gz
+Source1: %{name}.manifest
+
+%define database_full_path /opt/usr/dbspace/.wordv2vec_idf.db
+
+%description
+%{summary}
+
+%package devel
+Summary: Generic Text Classifier api for Tizen Platform
+Requires: %{name} = %{version}
+
+%description devel
+Generic Text Classifier for Tizen Platform
+
+%prep
+%setup -q
+cp %{SOURCE1} .
+%build
+cmake VERBOSE=1 -DCMAKE_INSTALL_PREFIX=/usr -DLIB_INSTALL_DIR=%{_libdir} -DENABLE_TEST=%{enable_test}  -DINCLUDE_INSTALL_DIR=%{_includedir} -DLIB_PATH=%{_lib} ./ -DEMBEDDING_TYPE=%{embedding_type} -DDBPATH=%{database_full_path}
+
+make %{?_smp_mflags}
+
+%install
+mkdir -p %{buildroot}/opt/usr/dbspace
+install -m 644 resource/wordv2vec_idf.db %{buildroot}%{database_full_path}
+install -d "%{buildroot}"%{_includedir}
+install -m 644 include/generic_text_classifier.h %{buildroot}%{_includedir}
+install -m 644 include/generic_text_classifier_type.h %{buildroot}%{_includedir}
+
+%make_install
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%if "%{enable_test}" == "Y"
+%define FILENAMES %{_bindir}/gc_persistent_storage_test \
+%define FILENAMES %{_bindir}/gc_unit_test \
+%define FILENAMES %{_bindir}/gc_accuracy_test
+         
+%else
+%define FILENAMES \
+%endif()
+
+%files
+%manifest generic_text_classifier.manifest
+%{_libdir}/libgeneric_text_classifier.so
+%{database_full_path}
+%{FILENAMES}
+%if "%{enable_test}" == "Y"
+%{_bindir}/gc_persistent_storage_test
+%{_bindir}/gc_unit_test
+%{_bindir}/gc_accuracy_test
+%endif()
+%files devel
+%{_libdir}/pkgconfig/*.pc
+%{_includedir}/*.h
+%{_libdir}/libgeneric_text_classifier.so
diff --git a/src/gc_categorization.cpp b/src/gc_categorization.cpp
new file mode 100644 (file)
index 0000000..60b819e
--- /dev/null
@@ -0,0 +1,177 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <mutex>
+
+#include "gc_persistent_storage.h"
+#include "gc_data_preprocessing.h"
+#include "gc_categorization.h"
+
+/*This set of MACROS has to be called in this sequence only, first call START Macro then END Macro */
+#define NONINTERRUPT_BLOCK_START {int l1234Var = 0; mtx.lock();
+#define NONINTERRUPT_BLOCK_END mtx.unlock(); g1234Var = l1234Var; if (cancelFlag) { resetCancelFlag(); return res; }}
+
+/*
+* This MACROS has to be called when we want to exit from function based on cancel flag, This must not be
+* called in between NONINTERRUPT_BLOCK_START and NONINTERRUPT_BLOCK_END macro
+*/
+#define UNLOCKED_EXIT_POINT int l1234Var = 0; if (cancelFlag) {g1234Var = l1234Var; resetCancelFlag(); return res; }
+
+mutex mtx;
+
+classificationResult::classificationResult()
+{
+       m_classification_api_sucess_state = false;
+       m_classification_api_error = GC_ERROR_CODE_UNKNOWN;
+}
+
+vector<float> Classifier::computeMean(PersistentStorage& ps, const vector<string>& words)
+{
+       vector<vector<float>> embeds = ps.getWordEmbedding(words);
+
+       int rows = embeds.size();
+       vector<float> result(W2VDIM);
+
+       if (embeds.size() == 0)
+               return result;
+
+       for (int i = 0; i < W2VDIM; i++) {
+               for (int j = 0; j < rows; j++)
+                       result[i] += embeds[j][i];
+               result[i] = result[i] / rows;
+       }
+
+       return result;
+}
+
+float Classifier::computeCosine(const vector<float>& A, const vector<float>& B)
+{
+       long double dot = 0.0, denom_a = 0.0, denom_b = 0.0;
+
+       for (unsigned int i = 0; i < A.size(); ++i) {
+               dot += A[i] * B[i] ;
+               denom_a += A[i] * A[i] ;
+               denom_b += B[i] * B[i] ;
+       }
+
+       return dot / sqrt(denom_a * denom_b) ;
+}
+
+static void computeCategoryProfile(CategoryProfile& usrProf, vector<string>& contentWords, PersistentStorage& ps)
+{
+       vector<float> w2vsum(W2VDIM);
+       vector<vector<float>> wordVectors = ps.getWordEmbedding(contentWords);
+       int numWords = wordVectors.size(), curWords = usrProf.wordCount;
+
+       for(int i = 0; i < W2VDIM; i++)
+               for(int j = 0; j < numWords; j++)
+                       w2vsum[i] += wordVectors[j][i];
+
+       for(int j = 0; j < W2VDIM; j++)
+               usrProf.profile[j] = (usrProf.profile[j] * curWords + w2vsum[j]) / (curWords + numWords);
+       usrProf.wordCount += numWords;
+}
+
+int Classifier::addCategory(const string userID, const string category)
+{
+       PersistentStorage ps;
+       int retVal = ps.addCategoryProfile(userID, category);
+       return retVal;
+}
+
+int Classifier::deleteCategory(const string userID, const string category)
+{
+       PersistentStorage ps;
+       int retVal = ps.deleteCategoryProfile(userID, category);
+       return retVal;
+}
+
+int Classifier::updateCategory(const string userID, const string category, const char* text)
+{
+       PersistentStorage ps;
+
+       pair<vector<string>, vector<string>> textWords;
+       vector<string> keyWords, contentWords;
+
+       textWords = extractKeywords(text, ps);
+       keyWords = textWords.first;
+       contentWords = textWords.second;
+
+       CategoryProfile categoryProfile;
+
+       categoryProfile = ps.getCategoryProfile(category);
+       computeCategoryProfile(categoryProfile, contentWords, ps);
+       categoryProfile.categoryName = category;
+       int retVal = ps.updateCategoryProfile(userID, categoryProfile);
+       return retVal;
+}
+
+classificationResult Classifier::getCategoryInference(const string userID, const char* inputText)
+{
+       PersistentStorage ps;
+       classificationResult res;
+       vector<pair<float, string>> result;
+       vector<string> words, keyWords, contentWords;
+
+       pair<vector<string>, vector<string>> textWords = extractKeywords(inputText, ps);
+       keyWords = textWords.first;
+       contentWords = textWords.second;
+
+       vector<float> mean = computeMean(ps, contentWords);
+       vector<pair<string, vector<float>>> tempCatProf;
+       tempCatProf = ps.getAllUserCategoryProfile(userID);
+       tempCatProf.insert(tempCatProf.end(), catProf.begin(), catProf.end());
+
+       for (unsigned int i = 0; i < tempCatProf.size(); i++) {
+               float cos_val = 0.0;
+
+               if (contentWords.size() > 0)
+                       cos_val = computeCosine(mean, tempCatProf[i].second);
+               else
+                       cos_val = 0.0;
+               result.push_back(make_pair(cos_val, tempCatProf[i].first));
+       }
+       sort(result.begin(), result.end());
+       reverse(result.begin(), result.end());
+       res.m_classification_api_sucess_state = true;
+
+       for (unsigned int i = 0; i < result.size(); i++)
+               result[i].first -= result[tempCatProf.size() - 1].first;
+
+       float sftmxSum = result[0].first + result[1].first + result[2].first;
+       for (unsigned int i = 0; i < result.size(); i++) {
+               res.category_score_vec.push_back(result[i].first/sftmxSum);
+               res.category_name_vec.push_back(result[i].second);
+       }
+       return res;
+}
+
+Classifier::Classifier()
+{
+       cancelFlag = false;
+       PersistentStorage ps;
+       catProf = ps.getAllCategoryProfile();
+}
+
+void Classifier::cancelThread()
+{
+       cancelFlag = true;
+}
+
+void Classifier::resetCancelFlag()
+{
+       cancelFlag = false;
+}
diff --git a/src/gc_data_preprocessing.cpp b/src/gc_data_preprocessing.cpp
new file mode 100644 (file)
index 0000000..b891c87
--- /dev/null
@@ -0,0 +1,73 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <tuple>
+#include <map>
+
+#include "gc_data_preprocessing.h"
+
+const string stop_words = (",a,about,above,after,again,against,ain,all,am,an,and,any,are,aren,aren't,as,at,be,because,been,before,being,below,between,both,but,by,can,couldn,couldn't,d,did,didn,didn't,do,does,doesn,doesn't,doing,don,don't,down,during,each,few,for,from,further,had,hadn,hadn't,has,hasn,hasn't,have,haven,haven't,having,he,her,here,hers,herself,him,himself,his,how,i,if,in,into,is,isn,isn't,it,it's,its,itself,just,ll,m,ma,me,mightn,mightn't,more,most,mustn,mustn't,my,myself,needn,needn't,no,nor,not,now,o,of,off,on,once,only,or,other,our,ours,ourselves,out,over,own,re,s,same,shan,shan't,she,she's,should,should've,shouldn,shouldn't,so,some,such,t,than,that,that'll,the,their,theirs,them,themselves,then,there,these,they,this,those,through,to,too,under,until,up,ve,very,was,wasn,wasn't,we,were,weren,weren't,what,when,where,which,while,who,whom,why,will,with,won,won't,wouldn,wouldn't,y,you,you'd,you'll,you're,you've,your,yours,yourself,yourselves,could,he'd,he'll,he's,here's,how's,i'd,i'll,i'm,i've,let's,ought,she'd,she'll,that's,there's,they'd,they'll,they're,they've,we'd,we'll,we're,we've,what's,when's,where's,who's,why's,would,able,abst,accordance,according,accordingly,across,act,actually,added,adj,affected,affecting,affects,afterwards,ah,almost,alone,along,already,also,although,always,among,amongst,announce,another,anybody,anyhow,anymore,anyone,anything,anyway,anyways,anywhere,apparently,approximately,arent,arise,around,aside,ask,asking,auth,available,away,awfully,b,back,became,become,becomes,becoming,beforehand,begin,beginning,beginnings,begins,behind,believe,beside,besides,beyond,biol,brief,briefly,c,ca,came,cannot,can't,cause,causes,certain,certainly,co,com,come,comes,contain,containing,contains,couldnt,date,different,done,downwards,due,e,ed,edu,effect,eg,eight,eighty,either,else,elsewhere,end,ending,enough,especially,et,etc,even,ever,every,everybody,everyone,everything,everywhere,ex,except,f,far,ff,fifth,first,five,fix,followed,following,follows,former,formerly,forth,found,four,furthermore,g,gave,get,gets,getting,give,given,gives,giving,go,goes,gone,got,gotten,h,happens,hardly,hed,hence,hereafter,hereby,herein,heres,hereupon,hes,hi,hid,hither,home,howbeit,however,hundred,id,ie,im,immediate,immediately,importance,important,inc,indeed,index,information,instead,invention,inward,itd,it'll,j,k,keep,keeps,kept,kg,km,know,known,knows,l,largely,last,lately,later,latter,latterly,least,less,lest,let,lets,like,liked,likely,line,little,'ll,look,looking,looks,ltd,made,mainly,make,makes,many,may,maybe,mean,means,meantime,meanwhile,merely,mg,might,million,miss,ml,moreover,mostly,mr,mrs,much,mug,must,n,na,name,namely,nay,nd,near,nearly,necessarily,necessary,need,needs,neither,never,nevertheless,new,next,nine,ninety,nobody,non,none,nonetheless,noone,normally,nos,noted,nothing,nowhere,obtain,obtained,obviously,often,oh,ok,okay,old,omitted,one,ones,onto,ord,others,otherwise,outside,overall,owing,p,page,pages,part,particular,particularly,past,per,perhaps,placed,please,plus,poorly,possible,possibly,potentially,pp,predominantly,present,previously,primarily,probably,promptly,proud,provides,put,q,que,quickly,quite,qv,r,ran,rather,rd,readily,really,recent,recently,ref,refs,regarding,regardless,regards,related,relatively,research,respectively,resulted,resulting,results,right,run,said,saw,say,saying,says,sec,section,see,seeing,seem,seemed,seeming,seems,seen,self,selves,sent,seven,several,shall,shed,shes,show,showed,shown,showns,shows,significant,significantly,similar,similarly,since,six,slightly,somebody,somehow,someone,somethan,something,sometime,sometimes,somewhat,somewhere,soon,sorry,specifically,specified,specify,specifying,still,stop,strongly,sub,substantially,successfully,sufficiently,suggest,sup,sure,take,taken,taking,tell,tends,th,thank,thanks,thanx,thats,that've,thence,thereafter,thereby,thered,therefore,therein,there'll,thereof,therere,theres,thereto,thereupon,there've,theyd,theyre,think,thou,though,thoughh,thousand,throug,throughout,thru,thus,til,tip,together,took,toward,towards,tried,tries,truly,try,trying,ts,twice,two,u,un,unfortunately,unless,unlike,unlikely,unto,upon,ups,us,use,used,useful,usefully,usefulness,uses,using,usually,v,value,various,'ve,via,viz,vol,vols,vs,w,want,wants,wasnt,way,wed,welcome,went,werent,whatever,what'll,whats,whence,whenever,whereafter,whereas,whereby,wherein,wheres,whereupon,wherever,whether,whim,whither,whod,whoever,whole,who'll,whomever,whos,whose,widely,willing,wish,within,without,wont,words,world,wouldnt,www,x,yes,yet,youd,youre,z,zero,a's,ain't,allow,allows,apart,appear,appreciate,appropriate,associated,best,better,c'mon,c's,cant,changes,clearly,concerning,consequently,consider,considering,corresponding,course,currently,definitely,described,despite,entirely,exactly,example,going,greetings,hello,help,hopefully,ignored,inasmuch,indicate,indicated,indicates,inner,insofar,it'd,keep,keeps,novel,presumably,reasonably,second,secondly,sensible,serious,seriously,sure,t's,third,thorough,thoroughly,three,well,wonder,a,about,above,above,across,after,afterwards,again,against,all,almost,alone,along,already,also,although,always,am,among,amongst,amoungst,amount,an,and,another,any,anyhow,anyone,anything,anyway,anywhere,are,around,as,at,back,be,became,because,become,becomes,becoming,been,before,beforehand,behind,being,below,beside,besides,between,beyond,bill,both,bottom,but,by,call,can,cannot,cant,co,con,could,couldnt,cry,de,describe,detail,do,done,down,due,during,each,eg,eight,either,eleven,else,elsewhere,empty,enough,etc,even,ever,every,everyone,everything,everywhere,except,few,fifteen,fify,fill,find,fire,first,five,for,former,formerly,forty,found,four,from,front,full,further,get,give,go,had,has,hasnt,have,he,hence,her,here,hereafter,hereby,herein,hereupon,hers,herself,him,himself,his,how,however,hundred,ie,if,in,inc,indeed,interest,into,is,it,its,itself,keep,last,latter,latterly,least,less,ltd,made,many,may,me,meanwhile,might,mill,mine,more,moreover,most,mostly,move,much,must,my,myself,name,namely,neither,never,nevertheless,next,nine,no,nobody,none,noone,nor,not,nothing,now,nowhere,of,off,often,on,once,one,only,onto,or,other,others,otherwise,our,ours,ourselves,out,over,own,part,per,perhaps,please,put,rather,re,same,see,seem,seemed,seeming,seems,serious,several,she,should,show,side,since,sincere,six,sixty,so,some,somehow,someone,something,sometime,sometimes,somewhere,still,such,system,take,ten,than,that,the,their,them,themselves,then,thence,there,thereafter,thereby,therefore,therein,thereupon,these,they,thickv,thin,third,this,those,though,three,through,throughout,thru,thus,to,together,too,top,toward,towards,twelve,twenty,two,un,under,until,up,upon,us,very,via,was,we,well,were,what,whatever,when,whence,whenever,where,whereafter,whereas,whereby,wherein,whereupon,wherever,whether,which,while,whither,who,whoever,whole,whom,whose,why,will,with,within,without,would,yet,you,your,yours,yourself,yourselves,the,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,co,op,research-articl,pagecount,cit,ibid,les,le,au,que,est,pas,vol,el,los,pp,u201d,well-b,http,volumtype,par,0o,0s,3a,3b,3d,6b,6o,a1,a2,a3,a4,ab,ac,ad,ae,af,ag,aj,al,an,ao,ap,ar,av,aw,ax,ay,az,b1,b2,b3,ba,bc,bd,be,bi,bj,bk,bl,bn,bp,br,bs,bt,bu,bx,c1,c2,c3,cc,cd,ce,cf,cg,ch,ci,cj,cl,cm,cn,cp,cq,cr,cs,ct,cu,cv,cx,cy,cz,d2,da,dc,dd,de,df,di,dj,dk,dl,do,dp,dr,ds,dt,du,dx,dy,e2,e3,ea,ec,ed,ee,ef,ei,ej,el,em,en,eo,ep,eq,er,es,et,eu,ev,ex,ey,f2,fa,fc,ff,fi,fj,fl,fn,fo,fr,fs,ft,fu,fy,ga,ge,gi,gj,gl,go,gr,gs,gy,h2,h3,hh,hi,hj,ho,hr,hs,hu,hy,i,i2,i3,i4,i6,i7,i8,ia,ib,ic,ie,ig,ih,ii,ij,il,in,io,ip,iq,ir,iv,ix,iy,iz,jj,jr,js,jt,ju,ke,kg,kj,km,ko,l2,la,lb,lc,lf,lj,ln,lo,lr,ls,lt,m2,ml,mn,mo,ms,mt,mu,n2,nc,nd,ne,ng,ni,nj,nl,nn,nr,ns,nt,ny,oa,ob,oc,od,of,og,oi,oj,ol,om,on,oo,oq,or,os,ot,ou,ow,ox,oz,p1,p2,p3,pc,pd,pe,pf,ph,pi,pj,pk,pl,pm,pn,po,pq,pr,ps,pt,pu,py,qj,qu,r2,ra,rc,rd,rf,rh,ri,rj,rl,rm,rn,ro,rq,rr,rs,rt,ru,rv,ry,s2,sa,sc,sd,se,sf,si,sj,sl,sm,sn,sp,sq,sr,ss,st,sy,sz,t1,t2,t3,tb,tc,td,te,tf,th,ti,tj,tl,tm,tn,tp,tq,tr,ts,tt,tv,tx,ue,ui,uj,uk,um,un,uo,ur,ut,va,wa,vd,wi,vj,vo,wo,vq,vt,vu,x1,x2,x3,xf,xi,xj,xk,xl,xn,xo,xs,xt,xv,xx,y2,yj,yl,yr,ys,yt,zi,zz,");
+
+unsigned const int MAXWORDS = 50;
+
+pair<vector<string>, vector<string>> extractKeywords(const char* data, PersistentStorage& ps) {
+       map<string, int> termFreq;
+       string inputdata(data);
+       int dataSize = inputdata.size();
+       for (int i = 0; i < dataSize; i++) {
+               if (!isalpha(inputdata[i]))
+                       inputdata[i] = ' ';
+               else
+                       inputdata[i] = tolower(inputdata[i]);
+       }
+
+       vector<string> wordList, keyWords, contentWords;
+       vector<pair<float, string>> wordInfo;
+
+       stringstream ss(inputdata);
+       string temp;
+
+       while (ss >> temp) {
+               if (stop_words.find("," + temp + ",") == string::npos)
+                       wordList.push_back(temp);
+       }
+
+       for (unsigned int i = 0; i < wordList.size(); i++)
+               termFreq[wordList[i]]++; 
+
+       sort(wordList.begin(), wordList.end());
+       wordList.erase(unique(wordList.begin(), wordList.end()), wordList.end());
+
+       vector<tuple<float, bool, bool>> wordPresent = ps.checkWordEmbedding(wordList);
+       dataSize = wordList.size();
+       for (int i = 0; i < dataSize; i++) {
+               if (!get<1>(wordPresent[i]))
+                       keyWords.push_back(wordList[i]);
+               else
+                       wordInfo.push_back(make_pair(get<0>(wordPresent[i])*termFreq[wordList[i]], wordList[i]));
+       }
+
+       sort(wordInfo.begin(), wordInfo.end());
+       reverse(wordInfo.begin(), wordInfo.end());
+
+       if (MAXWORDS < wordInfo.size())
+               wordInfo.resize(MAXWORDS);
+
+       dataSize = wordInfo.size();
+       for (int i = 0; i < dataSize; i++)
+               contentWords.push_back(wordInfo[i].second);
+       return make_pair(keyWords, contentWords);
+}
diff --git a/src/gc_inference.cpp b/src/gc_inference.cpp
new file mode 100644 (file)
index 0000000..7c577df
--- /dev/null
@@ -0,0 +1,89 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <string.h>
+#include <stdlib.h>
+
+#include "gc_categorization.h"
+#include "gc_inference.h"
+
+gc_get_category_result get_category(char *uID, char *appID, char *text) {
+       string l_appID(appID);
+       string l_uID(uID);
+
+       l_uID = l_uID + l_appID;
+
+       Classifier classifier;
+       classificationResult res = classifier.getCategoryInference(l_uID, text);
+
+       gc_get_category_result ret_val;
+       strncpy(ret_val.first_category, res.category_name_vec[0].c_str(), res.category_name_vec[0].size() + 1);
+       strncpy(ret_val.second_category, res.category_name_vec[1].c_str(), res.category_name_vec[1].size() + 1);
+       strncpy(ret_val.third_category, res.category_name_vec[2].c_str(), res.category_name_vec[2].size() + 1);
+       ret_val.first_category_score = res.category_score_vec[0];
+       ret_val.second_category_score = res.category_score_vec[1];
+       ret_val.third_category_score = res.category_score_vec[2];
+
+       return ret_val;
+}
+
+int add_category(char *appID, char *uID, char *category_name)
+{
+       string l_appID(appID);
+       string l_uID(uID);
+       string l_category_name(category_name);
+
+       l_uID = l_uID + l_appID;
+       Classifier classifier;
+       int ret_val = classifier.addCategory(l_uID, l_category_name);
+
+       if(ret_val)
+               return GC_ERROR_UNKNOWN;
+       else
+               return GC_ERROR_NONE;
+}
+
+int delete_category(char *appID, char *uID, char *category_name)
+{
+       string l_appID(appID);
+       string l_uID(uID);
+       string l_category_name(category_name);
+
+       l_uID = l_uID + l_appID;
+       Classifier classifier;
+       int ret_val = classifier.deleteCategory(l_uID, l_category_name);
+
+       if(ret_val)
+               return GC_ERROR_UNKNOWN;
+       else
+               return GC_ERROR_NONE;
+}
+
+int update_category(char *appID, char *uID, char *category_name, char *text_data, int text_data_len)
+{
+       string l_appID(appID);
+       string l_uID(uID);
+       string l_category_name(category_name);
+
+       l_uID = l_uID + l_appID;
+       Classifier classifier;
+       int ret_val = classifier.updateCategory(l_uID, l_category_name, text_data);
+
+       if(ret_val)
+               return GC_ERROR_UNKNOWN;
+       else
+               return GC_ERROR_NONE;
+}
diff --git a/src/gc_internal.c b/src/gc_internal.c
new file mode 100644 (file)
index 0000000..e1167b5
--- /dev/null
@@ -0,0 +1,132 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <malloc.h>
+#include <string.h>
+#include <stdbool.h>
+
+#include "gc_internal.h"
+#include "gc_inference.h"
+#include "gc_private.h"
+
+static bool is_initialized = false;
+static gc_classifier_h *gc_handle = NULL;
+
+int _initialize(void)
+{
+       if (is_initialized)
+               return GC_ERROR_ALREADY_DONE;
+
+       is_initialized = true;
+
+       return GC_ERROR_NONE;
+}
+
+int _deinitialize(void)
+{
+       if (!is_initialized)
+               return GC_ERROR_ALREADY_DONE;
+
+       is_initialized = false;
+
+       return GC_ERROR_NONE;
+}
+
+int _gc_check_init_status(void)
+{
+       int ret_val = GC_ERROR_NONE;
+
+       if (is_initialized == false)
+               ret_val = GC_ERROR_INITIALIZATION_NOT_DONE;
+
+       return ret_val;
+}
+
+int _create_classifier(gc_classifier_h *classifier_handle, char *app_id, char *user_id)
+{
+       int ret_val = GC_ERROR_NONE;
+
+       return ret_val;
+}
+
+int _gc_check_handle_creation(void)
+{
+       int ret_val = GC_ERROR_NONE;
+
+       if (gc_handle == NULL)
+               ret_val = GC_ERROR_HANDLE_NOT_CREATED;
+
+       return ret_val;
+}
+
+int _gc_check_handle_validity(gc_classifier_h *classifier_handle)
+{
+       int ret_val = GC_ERROR_NONE;
+
+       return ret_val;
+}
+
+int _delete_classifier(gc_classifier_h *classifier_handle)
+{
+       int ret_val = GC_ERROR_NONE;
+
+       free(gc_handle);
+       gc_handle = NULL;
+
+       return ret_val;
+
+}
+
+int _get_category(gc_classifier_s *classifier_handle, char *text_data, int text_data_len, gc_category_s *category_list)
+{
+
+       int ret_val = GC_ERROR_NONE;
+
+       gc_get_category_result result = get_category(classifier_handle->uID, classifier_handle->appID, text_data);
+
+       strncpy(category_list->first_category, result.first_category, strlen(result.first_category) + 1);
+       strncpy(category_list->second_category, result.second_category, strlen(result.second_category) + 1);
+       strncpy(category_list->third_category, result.third_category, strlen(result.third_category) + 1);
+
+       category_list->first_category_score = result.first_category_score;
+       category_list->second_category_score = result.second_category_score;
+       category_list->third_category_score = result.third_category_score;
+       return ret_val;
+}
+
+int _add_category(gc_classifier_s *classifier_handle, char *category_name)
+{
+
+       int ret_val = add_category(classifier_handle->appID, classifier_handle->uID, category_name);
+
+       return ret_val;
+}
+
+int _delete_category(gc_classifier_s *classifier_handle, char *category_name)
+{
+
+       int ret_val = delete_category(classifier_handle->appID, classifier_handle->uID, category_name);
+
+       return ret_val;
+}
+
+int _update_category(gc_classifier_s *classifier_handle, char *category_name, char *text_data, int text_data_len)
+{
+
+       int ret_val = update_category(classifier_handle->appID, classifier_handle->uID, category_name, text_data, text_data_len);
+
+       return ret_val;
+}
diff --git a/src/gc_persistent_storage.cpp b/src/gc_persistent_storage.cpp
new file mode 100644 (file)
index 0000000..df1ff09
--- /dev/null
@@ -0,0 +1,282 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <stdlib.h>
+#include <iostream>
+#include <sstream>
+#include <tuple>
+
+#include "gc_persistent_storage.h"
+#include "gc_private.h"
+
+#define MAX_QUERY_SIZE 15360
+#define MAX_WORD_LIST_SIZE 4048
+#define MAX_WORDS 50
+
+const vector<vector<float>> centVal = {{-0.250660509,0.0817411691,0.190911651,0.0910401642,-0.12280491,-0.440141648,0.0040162988,-0.0668936744,0.183208555,0.328014672,0.408068419,-0.0122238658,0.18513234,0.0142661268,-0.12487527,0.372974545,-0.0131163988,-0.166326776,0.0306162275,-0.195835367,0.0225444715,0.357358873,0.0878440738,-0.056766469,-0.089295581,0.0592877865,-0.0616101734,-0.019642001,0.046216093,0.206100032,0.07104256,-0.0577353835,0.129339576,0.222158939,0.327225655,-0.10471274,-0.0956774652,-0.125790313,-0.0439526141,0.154735819,0.0741929188,0.239267021,0.179166391,-0.0835099593,0.145948082,-0.124832235,0.00393161178,-0.242217422,0.0617547929,0.163556129,-0.118164062,0.0287180133,-0.0141947698,-0.393612742,-0.154826626,0.0898303911,-0.0618595108,-0.123986252,0.192260742,0.0685756505,-0.0613489449,0.117657907,0.00892322697,-0.395504832,-0.0396499261,-0.110120073,-0.21825704,0.162062928,-0.275425732,0.161132812,0.0981266871,0.12055815,0.11597003,-0.0595482886,-0.0575873554,-0.28021279,-0.0149756121,-0.0721755102,0.0976107568,-0.20024474,-0.0970954597,-0.0248330571,0.00640657637,-0.207472637,-0.0162000917,0.0934787318,0.128380522,0.0206726156,0.0930591077,0.0552780516,0.186049402,-0.0457293354,-0.122787826,0.0269439388,0.066630125,0.228450343,0.0282511488,-0.384719849,0.213898629,-0.0595750622,0.0302573889,-0.0944827646,-0.194799617,0.0135966446,0.0847236738,0.0886206701,0.0478541031,-0.156202942,0.103281252,0.0697868168,0.0200266447,-0.0185902119,0.252982795,-0.102988474,0.489038289,0.14262256,-0.127878219,-0.0885903761,0.177654907,-0.0603324957,-0.279241443,-0.044035431,-0.123946987,-0.240712106,-0.170390815,-0.145605713,0.0172612108,-0.113816626,0.0470796339,-0.0407725312,-0.0671980157,-0.0852168426,0.327282488,-0.0596823208,-0.143501103,0.0891019925,-0.116961397,-0.0181138106,-0.239798039,0.097164765,-0.0780737475,-0.230535433,-0.11838796,-0.0553953089,0.169379503,-0.233864725,0.349822998,0.0737208799,-0.143026352,-0.00288273511,-0.0888754427,-0.137176424,0.0653718263,0.184550732,-0.043351192,0.103784703,0.0383035727,0.209445313,-0.0603112914,-0.0661295056,-0.0985987186,0.164123088,0.144544661,-0.000786323857,0.287159026,-0.0869431347,0.0459915549,0.120578475,0.13573885,0.367177218,-0.226001188,0.145987839,-0.0300317612,0.043564789,-0.343605846,-0.252953082,0.234352052,-0.00545478286,-0.0118858563,0.158651531,0.135202006,0.0502948985,0.128382608,-0.171801507,-0.0333060399,-0.00710915076,0.106150597,-0.217227533,2.50723429e-06,0.0604649968,-0.254826367,-0.32896626,-0.114483647,-0.110068358,0.242212683,0.421801448,-0.0464072004,0.214310333,-0.0545381568,0.0932342187,0.22021915,-0.0178945381,0.000667244603,0.176638857,0.0606255047,-0.156206146,-0.0182176977,-0.101301797,-0.0446232893,-0.200286433,0.0241025537,-0.030995952,-0.184128955,-0.0812244788,-0.374864727,-0.0478401408,-0.134269655,-0.0260177329,-0.00128803868,-0.155763224,0.134682313,0.0049391361,0.226066709,-0.133278072,-0.0421412997,-0.0147439372,-0.0265551005,-0.175797597,0.01761977,0.0705001876,-0.040154893,0.271398306,0.0198414978,0.397328198,0.0649688691,0.0329482108,0.0552585199,0.00804776419,-0.119191356,0.052878987,0.0623018704,-0.682545722,0.0724973902,0.166918948,-0.0626019388,0.0582896397,0.0281169098,0.111085922,0.175813124,0.46564275,-0.0549252927,-0.202654362,0.232421875,0.0966847315,-0.102080598,0.0170643348,-0.0767321065,-0.275350034,0.190857634,0.0720241442,0.095463112,0.00783708878,-0.0652160645,0.155806601,-0.268605202,0.342796057,-0.0396783948,-0.078866072,-0.23491402,-0.0272990651,-0.265568942,0.0102266949,-0.017460458,0.245074958,0.0480137058,-0.0142662954,0.372373372,0.126953125,0.0568713173,-0.0393706523,-0.148899108,0.0227170736,-0.00507834181,0.0262472481,-0.0253911167,0.0418472588,0.0415259041,0.0725055486,-0.0798448399,0.0568974949,0.202675968,-0.00580292242,-0.278226286,-0.0399068408,-0.0172606967,-0.13859342,-0.0137976445,0.0690999702,-0.16844365,0.0159860272},{0.06598718,-0.12059258,-0.08393403,0.30168837,0.08852823,0.05063455,0.23725307,0.2148472,-0.09813198,0.01376519,-0.04459713,-0.23719643,-0.10911173,0.20700566,0.11375358,0.02177011,0.17043792,0.23774108,-0.13524093,0.06362342,0.29092625,-0.05580411,-0.19823204,0.19627807,0.21583131,-0.24271688,-0.265625,0.19234243,-0.14940898,-0.15137476,-0.14450285,0.15774646,-0.1670058,-0.06339324,-0.09837582,0.07028863,0.20366658,0.16157015,0.19673492,-0.10615402,0.27736223,-0.09544776,-0.09101301,0.15431654,-0.05117499,-0.32517713,-0.17035674,0.06956755,-0.15968889,-0.06230731,0.11141318,-0.20600738,-0.31258234,0.000596,0.1914167,-0.1845339,0.0688139,0.14100441,-0.06033215,-0.21098566,0.15959762,-0.08539987,-0.24126692,-0.00700201,0.17723516,0.16356604,0.04064201,-0.12205495,0.08174285,-0.07401429,-0.10158525,-0.05785773,-0.10150795,0.16397573,-0.2910683,0.06690974,0.12130278,0.14940259,-0.21279296,0.0913104,0.22265348,0.21776915,-0.2559065,0.12441278,0.19484806,-0.1293168,-0.18698299,0.34959415,-0.16205706,-0.1606761,-0.15383306,-0.30566695,0.06929593,0.25587887,-0.22999114,-0.09649607,0.2725206,0.00868004,-0.06764515,-0.32029104,-0.18997382,0.10618233,0.11984783,-0.28916666,-0.12890987,-0.24108274,-0.16354969,0.16015352,-0.14460242,-0.16649146,-0.19770886,-0.17530692,-0.08643803,0.1411064,0.00575859,-0.11743782,0.14452074,0.2695081,-0.05853937,0.2079798,-0.01338298,0.25398052,0.17573655,0.07328916,0.17818925,0.126074,-0.20696957,0.2026133,-0.28037298,0.20707522,0.2800807,0.15823275,-0.08331504,0.18111396,0.13422188,-0.13720202,0.14157288,-0.23485635,0.11961571,0.35736114,0.1660321,0.03648177,0.11589479,0.22752397,-0.13520853,0.04411267,-0.161152,-0.16013178,0.06761523,-0.2734613,0.21920814,0.05260941,-0.19675528,-0.07351964,0.22520016,-0.20114495,-0.27047908,-0.11445371,-0.3008189,0.1090773,0.10007019,-0.12413228,-0.10276014,-0.27141768,-0.05507094,0.11175032,0.2251094,-0.17629166,-0.24454123,-0.02149183,0.04644033,-0.09593704,0.2260706,-0.16254283,0.0477325,0.07230598,-0.03372326,-0.2617435,-0.29401752,-0.16258587,-0.3203125,-0.1567949,-0.13620856,0.05054829,0.12284774,0.1880345,-0.11719263,0.10593614,0.15817574,0.30859035,0.06224558,0.04091277,0.10421599,0.13385473,-0.06313565,0.02415776,0.183394,-0.0766639,0.15625757,-0.15622708,-0.08348278,0.17478876,-0.18891273,-0.09992903,-0.18506634,0.11182532,0.20655742,0.11275458,0.26749706,0.09130378,-0.25294518,0.18798941,0.12439838,0.21238127,0.01685367,0.2117828,0.13866022,0.27342677,-0.20169689,0.0584648,-0.10960156,0.31550056,-0.15527576,0.13626358,0.182634,0.17429282,0.24878792,0.12154401,0.30559638,-0.16846365,0.12577693,-0.08762479,-0.20745482,-0.01191187,-0.19533654,-0.29097113,-0.19682916,-0.22653526,0.16066046,-0.21383038,0.37205863,-0.03992668,-0.10054,-0.0400145,0.14300661,-0.16151069,-0.20793168,-0.16154334,-0.08765129,-0.03428717,0.28499874,0.14842889,-0.04850204,-0.04564819,0.11450761,-0.18461059,0.1249993,0.01498487,-0.15673159,-0.19326578,-0.12573048,0.31819153,0.1196296,-0.14306466,0.09563264,0.00824965,-0.28130248,-0.31637967,0.07493801,-0.19034603,-0.00493087,0.29978248,0.21968038,-0.05080193,0.3456679,-0.25391853,-0.15524922,-0.11716771,-0.15086462,0.28233224,0.0798621,-0.12993515,0.2538698,-0.13722803,0.2074824,-0.32816234,-0.2831248,-0.17869456,0.09079339,0.30079257,-0.08225924,0.3507017,0.00857245,0.14696224,-0.22062449,0.17140864,0.2396556,-0.16799389,0.1261909,0.24928184},{0.306701481,0.256766766,-0.42064926,-0.0953664407,-0.274387896,-0.103232458,-0.168936566,-0.248814434,0.03587671,0.138630658,-0.182633027,0.14155677,-0.300685555,-0.239752725,-0.328211814,0.18754594,-0.248202786,0.0567211881,0.319437265,-0.444231123,-0.186471015,-0.239114732,0.336959004,-0.288195878,-0.300752193,-0.0805727839,0.140597522,-0.311344624,0.302844018,-0.0299258307,-0.378811836,-0.311545342,-0.0151572283,-0.262778729,-0.30457589,-0.339652479,0.0875991136,0.0524915829,-0.203613281,0.330102533,-0.120296597,-0.349684775,0.407363862,-0.201124743,-0.259742916,0.0781612843,0.192890719,0.279273689,0.259694278,-0.251363516,-0.31346634,0.210844249,0.203596368,0.266565382,0.0174310748,0.327089489,-0.215350375,-0.405312091,-0.181615874,-0.0639514998,-0.248804584,0.330006599,0.204096615,0.222587481,-0.207919031,-0.268544286,-0.0674084127,0.317313224,-0.0793354735,0.351394415,0.326146007,-0.359572649,0.244099662,-0.375146478,0.148197308,-0.0834999681,-0.358028382,-0.312627941,-0.0393270515,0.289967597,0.0477038249,-0.207954869,0.264622033,-0.0307106785,-0.191307023,0.2606875,-0.0302966721,0.168922856,0.307567775,0.206944451,-0.016997898,0.168515176,-0.322240263,-0.259705007,0.183617756,-0.368282795,-0.283257067,-0.141186804,-0.26961419,0.152814776,0.256823242,-0.354401052,-0.0341333561,0.177204639,0.308570355,-0.0785960257,0.268483609,0.0152622573,0.421725959,0.229905561,0.304981112,0.257824928,0.0658955127,0.35739243,0.25390625,-0.288171768,0.00406836299,-0.377001941,0.38379401,-0.31640625,0.187012956,-0.190015733,-0.326245457,-0.0629269481,0.408307135,-0.0223308299,-0.401270747,0.0378152095,0.223170236,-0.207110241,-0.298835784,-0.302728504,0.101776928,-0.185638934,0.011534269,0.30859831,-0.384665459,0.198175907,-0.000130775108,-0.113732874,0.392497122,0.225611299,-0.32520318,-0.236411497,0.0172409639,0.277286857,0.0407835394,0.345558256,-0.324161142,0.177222148,0.065653719,-0.500234962,-0.382698655,0.400419354,-0.346541494,-0.0461722054,0.240275756,0.0639763176,0.148946628,-0.322164863,-0.371941328,0.0332964174,0.41516453,0.235893443,-0.338006765,-0.275374919,-0.165843919,-0.0138880499,-0.0635011792,0.159657389,0.386538476,-0.355485737,-0.260837138,0.246583775,-0.13674517,-0.0820323303,-0.175802633,-0.411146432,0.224516243,-0.0265059657,-0.105694033,0.218601093,-0.032188341,0.34383586,-0.279291004,-0.293925256,-0.349565983,-0.0659332871,-0.2040838,-0.101606309,0.342852622,0.209884211,-0.407270938,0.327216566,0.0756700709,-0.182116821,-0.258839875,-0.248402938,-0.339958638,0.293982267,-0.419053823,-0.181222096,0.214318544,-0.287129968,0.171356082,-0.371125132,-0.183605105,-0.399318784,-0.267528534,-0.0442432202,0.266536444,-0.278238922,-0.0541605614,0.0515272059,0.24973233,-0.244716659,-0.00067724695,-0.219759181,0.218713045,0.259979904,-0.330975503,-0.188923776,0.0207820479,0.410986334,-0.240654558,-0.240210623,-0.291064262,-0.0303575471,-0.153799236,0.271337062,-0.267533869,-0.300810575,0.282122672,-0.28238526,0.352472633,0.178157553,0.42711547,0.276284337,0.377053618,0.218637481,-0.176347896,0.150844932,0.291959494,-0.268562555,-0.206542969,0.273385525,0.271341264,0.368057311,-0.392319947,-0.298870087,-0.256831825,0.0267281197,-0.349422842,0.328108728,0.339694113,-0.505772591,-0.224591076,0.214788601,0.017601734,-0.047937572,0.284152925,-0.18936561,-0.277473658,-0.0247663911,-0.0895999372,-0.159148842,0.138116539,0.127433762,-0.0656425282,0.203055635,0.158224776,-0.191916719,-0.206003845,-0.277315587,-0.16071634,0.12743634,0.0379510745,-0.393623471,0.250214279,0.114703156,-0.391377062,0.361220628,-0.183569118,0.217251018,-0.2309165,-0.14453797,0.244568288,0.415075928,0.35545814,-0.183576509,-0.3279652,-0.231419206,-0.115670778,-0.245549321,0.20611617,0.014778723,-0.223000631,0.239279911,0.392620593,-0.166931003},{-0.0798345953,-0.0320484005,0.0459719263,0.494736701,0.347319961,0.279182643,0.0896504149,0.0993504748,0.417878807,-0.191927895,0.117160521,-0.439340204,0.0129650682,0.414017081,-0.00379482051,-0.171936259,0.341837913,0.421875,-0.433769524,-0.0604390502,0.134804174,0.112015128,-0.0576825216,0.0525927916,0.0455514491,0.30837512,-0.450184226,0.462735474,-0.326436877,-0.405146062,0.271456331,0.358597964,0.310416669,0.107153401,0.0506805889,0.258632332,0.545207679,-0.287063807,0.0596512966,0.013438574,-0.300612628,0.0379420109,0.0540467948,0.338047564,0.355353862,-0.654451072,-0.34765625,-0.0611579791,-0.425526947,0.37784785,-0.00130270899,-0.409951091,-0.130826399,-0.144486517,-0.453417957,-0.039918825,0.248252347,-0.000512430153,0.0764072761,0.255928069,0.287101597,-0.22222966,-0.110093005,-0.17333591,0.420041144,0.0147573398,0.265686423,0.00962694269,0.304845601,-0.193334967,-0.273244947,0.279261559,-0.459069282,-0.186061949,-0.473559052,-0.529331148,0.34771204,0.419609368,0.33600983,-0.0471342616,-0.292840689,0.0500493348,-0.113096945,0.320167065,0.351485908,-0.313279182,-0.314460248,-0.248473525,-0.0873382166,-0.054893218,-0.33779937,-0.183137923,0.319367439,-0.0841757134,-0.0712763965,0.0396833234,-0.125332564,0.196709007,0.0832012147,-0.188974574,-0.132296771,0.282255441,0.371932775,-0.0888855234,-0.334923536,0.232591718,-0.369249642,0.309575796,0.00615494978,-0.327056974,-0.3835648,-0.314493805,-0.266549438,0.0157000329,-0.182865813,0.0128766792,-0.319418907,0.0642057061,-0.181469455,0.0701080486,-0.115704834,0.0875998959,0.063831985,0.353530765,-0.0541925803,-0.389457494,0.192409053,-0.283233792,0.443410099,0.055035647,0.0693158209,0.0846961662,-0.283299029,0.368127882,-0.464908868,-0.0434596688,0.00315276324,-0.122550793,0.324247897,0.55078125,0.0669081137,-0.0752196983,0.000985192484,0.117411181,0.358340174,-0.0942455605,-0.353578418,0.146982476,0.237640172,-0.122353539,0.439430237,0.256694466,-0.0627779588,0.0319006667,0.113732018,-0.475390613,-0.0915395766,-0.38182801,0.036665231,0.291715652,0.281107485,0.411275595,-0.270627558,-0.128889084,0.0686119571,-0.406376839,-0.0601474456,-0.347626209,-0.41724512,-0.194841862,-0.0986131132,0.0234765112,0.100902103,-0.38991195,0.179172412,0.2734375,0.0959475487,0.162969217,-0.11912974,-0.499251992,0.0023144607,-0.330116123,0.315008074,-0.0487795211,0.258814871,-0.116981946,0.261613876,0.347589374,0.375810117,0.162559062,-0.0744863674,-0.112010494,0.00552494079,0.00894377939,-0.255876154,0.206639975,0.364056945,0.0555600449,0.316426605,-0.256807595,0.057182353,0.36724937,-0.310527593,0.0268517751,-0.0599640347,-0.0401472822,0.417886078,-0.0100862272,0.111791074,0.314402521,-0.550414205,-0.12697278,-0.370156944,-0.237795547,-0.163557261,0.0881529227,-0.347564548,0.105757445,-0.436445922,-0.36220336,0.0151229491,0.127941191,-0.334033519,0.00720925396,0.456774265,0.263705045,0.0939628407,0.405215979,0.13759765,-0.35061875,0.494247168,0.0649714842,-0.0820260122,0.139073595,-0.0584979206,-0.0906108692,0.183558196,-0.479973793,0.0361216143,-0.0588067099,0.277239799,-0.248367444,-0.404355168,-0.465632766,0.381967127,-0.353567302,-0.132358864,0.00995130464,0.0348980352,0.125142351,0.0776305795,0.428755611,0.085705325,-0.231888354,-0.335623026,0.402200401,0.349698901,-0.12840718,-0.336087734,0.317537427,-0.362131685,0.120382778,0.243557259,-0.368116528,0.325321317,0.171889037,0.394370407,-0.511637807,-0.359286845,-0.374030471,-0.133314997,0.131838515,0.0932461843,0.0869043767,0.19195205,0.312535733,-0.298835278,0.255724311,-0.36895895,-0.192731097,0.300688744,0.151866227,0.114030749,-0.227997169,0.111168846,0.232747391,-0.0927443579,0.222695887,-0.242754832,0.509654045,0.0261471104,0.105492875,0.275260419,0.31629464,0.375710219,-0.291952431,-0.410924911,-0.402309269,-0.0107829235,0.152357817},{0.144586995,-0.310629725,-0.206464604,-0.328059345,0.0250790473,-0.248462901,-0.350543469,-0.371939301,-0.248315156,0.526728392,-0.349330366,-0.12693435,0.325143427,-0.0903526396,0.475886405,-0.0727457404,-0.141061544,0.14640747,0.149886593,0.248967633,-0.0661353171,0.211930454,0.213873953,0.538823366,0.370070249,-0.428623736,-0.182096869,0.075946629,0.159681261,0.0693085045,-0.0272444151,0.0593375973,-0.355268717,0.403208822,0.141113281,-0.227442548,-0.293672293,0.312398732,0.30371806,-0.23781991,0.494378805,-0.188911363,-0.298815846,0.0401570834,0.0380517989,-0.0354364626,-0.0727474913,0.162577346,-0.0530691668,0.0646995977,0.369462579,-0.114548139,0.505408645,-0.260753483,0.399157792,-0.442303091,-0.345241666,-0.18748793,-0.418873847,-0.351475686,0.0471120179,0.505693138,-0.41015625,0.142955855,0.0678690672,0.296837449,-0.391471744,-0.287184775,-4.42445671e-05,0.0398796275,0.00958024524,-0.180761099,0.00183462363,0.046715878,-0.129874408,0.314708889,-0.134285644,0.0334081687,-0.38847211,-0.395601928,-0.481470346,-0.288106292,0.10933502,-0.332098603,-0.384672135,0.00707951002,0.261616677,-0.0956583694,0.000715520582,-0.353445441,0.339892983,0.0132138329,-0.0309658069,0.469818473,0.362282753,-0.224609375,0.134739965,0.374363422,0.404352427,-0.529264867,0.142989397,-0.00552978506,0.271318734,-0.166507602,-0.0158190075,-0.348492563,-0.0457589664,0.472688109,-0.30078125,-0.0391457789,-0.0844767317,0.0949584991,0.441288382,-0.350631803,0.0981275663,0.333852708,0.35646525,-0.167900577,0.0586531572,0.334913135,-0.466707528,0.51943934,-0.0308722481,0.194704771,0.0582317971,0.261778474,-0.0898198932,0.552622139,-0.0832104981,0.37392363,-0.180215031,0.33984375,0.0275024753,0.0402611978,-0.258754402,-0.371866852,0.377770394,0.0788564086,-0.103807911,0.19778277,-0.267547131,-0.407384813,0.303537041,0.592968762,-0.310570598,0.404203862,-0.0558479503,-0.0288332012,-0.034073133,-0.505974293,-0.213745117,-0.282226562,0.205074549,-0.253897637,-0.217771426,0.277381808,-0.489126623,-0.21097374,0.384588063,-0.16206266,-0.0012886218,-0.335075825,0.027543962,0.130840734,-0.165517107,0.279226571,0.397247195,0.372694045,0.262671977,0.0590710193,-0.451171875,0.371902734,-0.147421226,-0.0427010059,-0.0560096204,-0.559709847,0.460748494,-0.13471882,0.118157819,-0.314308256,-0.45918721,-0.0624374859,-0.403224558,-0.39442274,-0.164115891,0.438553661,0.00136137614,0.0186972078,-0.130865008,0.692589939,-0.466965675,0.37995258,0.311563671,-0.304527819,0.412159443,-0.0577280149,0.076662004,-0.422003061,-0.208514795,-0.0373308621,0.434415549,0.0849769562,-0.0729331523,0.363051474,0.410117179,0.299691379,0.0790566429,0.243587241,-0.153837532,-0.436319053,-0.103311256,0.33954677,0.312543392,0.398588717,0.126225114,0.523504853,0.34754774,-0.364304811,-0.107406065,-0.0473982245,0.403320312,-0.0820007324,0.446141899,-0.343073487,0.0623150393,0.0742201954,-0.164135858,-0.505969942,-0.298747867,-0.0439440869,-0.148375958,-0.0103483498,0.1430507,-0.100860678,0.157699093,0.291905165,-0.0449937172,0.119573936,-0.36229232,0.422646612,-0.0589850172,-0.144998357,0.173383236,-0.159132764,0.0391850211,-0.041740898,-0.481336802,0.22611542,-0.209949434,-0.154751688,-0.493537456,-0.379765987,0.398991019,0.226087049,0.00857069436,0.154549196,0.0359836146,-0.424942493,0.427001953,-0.468443304,-7.19764794e-05,-0.369271636,0.0406516157,0.426025391,0.00227804692,0.0739751831,-0.171422839,0.0123433834,0.307394475,0.0636255145,-0.542842746,0.474751949,-0.386839569,0.456148714,0.478534132,-0.117652118,0.164026156,0.012710413,-0.0431124009,0.470941782,-0.0382190533,-0.354399383,0.488690346,0.411024302,0.372908086,-0.550722063,0.468545377,-0.0362740606,0.230420724,-0.042593237,-0.195869148,-0.0798219666,-0.359392494,0.0565304048,0.110573336,0.570605457,0.0983779728,-0.0366065875,0.221265152,0.436684519},{-0.00571274338,0.453810304,0.427884609,0.201149493,-0.45005253,0.212382898,0.35229826,-0.170348033,0.292924136,-0.0762219355,0.234333962,0.257928371,-0.200132623,0.104245991,-0.245115668,0.103505552,0.0550970733,-0.0410557799,-0.271512508,-0.314439088,0.583568156,-0.533060193,-0.395320803,-0.173688889,-0.151871383,0.175753579,0.0219903421,-0.152415007,-0.0547901839,-0.233348399,-0.221612781,-0.177162647,0.0324419886,0.0200668033,-0.184026912,0.00283413474,-0.000129992928,-0.0499109849,0.461794972,0.609074533,-0.0182751585,0.355454296,0.312525362,-0.38172105,-0.411171883,0.310318321,0.366220415,-0.142105818,0.396387339,-0.170963541,-0.424704343,0.384085804,0.050766021,0.10714566,-0.0666555911,0.194817618,0.442406625,0.319275439,0.345663279,-0.149416804,-0.392722815,0.0152326431,0.0946738124,-0.0698057562,-0.279216319,-0.422841161,0.104211159,0.513565361,-0.176270291,-0.467724621,0.215278506,0.0114576416,-0.291179746,0.366283476,0.0546631329,-0.200234205,0.226521716,-0.15236415,0.0351611376,0.147476688,0.334789693,0.346478045,-0.411106139,-0.119591303,0.0732626021,0.410128921,0.0528302491,0.477359176,-0.34244141,0.377129227,0.057766065,0.349595428,-0.513799667,0.132284418,-0.412981659,0.133244008,0.476694167,-0.263691932,-0.529188395,0.0259657614,-0.405146062,-0.236808017,-0.349922597,0.351576358,0.179643691,0.00651410036,0.449232787,-0.278102815,0.219290391,-0.511764169,0.111095332,-0.451158583,0.154730782,-0.248324692,-0.0812942013,-0.476342767,-0.0671390593,-0.0123620564,-0.350523233,-0.162602603,0.0570920072,-0.364804327,-0.22900109,-0.427417308,-0.354600698,0.0514953136,-0.272443682,0.341850132,-0.477900743,-0.377997816,-0.390691072,0.0288394466,-0.513816535,-0.342161745,0.30148983,0.211841211,-0.24407737,0.442808956,-0.592320859,-0.314562857,0.276344687,-0.165558025,-0.210484162,0.0358880088,0.0971825868,0.166980684,0.174424171,-0.347904533,0.36713472,0.37098524,0.152315363,-0.0587494671,-0.47932145,0.285063565,0.347786456,-0.287157178,0.462625802,0.342574894,-0.179739922,0.0196972527,-0.252917171,0.238257244,0.252898902,0.405316442,0.159618974,0.0181443878,0.124868326,-0.0789011642,0.0158134103,0.261750698,0.198673457,-0.207518145,0.431530893,0.139241919,0.324265242,0.150869697,-0.331141055,-0.621007919,-0.479664534,0.355415672,0.309792817,0.364091992,0.0306175128,0.170392528,0.0422268845,0.123965472,0.444171727,-0.44307825,-0.434194714,-0.251665622,0.180146113,-0.0316220559,-0.225668043,-0.208549991,-0.0022629837,-0.315321177,-0.131843254,0.373876959,0.0292595197,-0.457241386,-0.205537081,-0.412963867,0.0947152302,-0.197675705,-0.341004431,-0.25062412,-0.376642108,-0.215323254,-0.434535831,0.175275534,0.127385631,0.0790529698,0.00733878231,-0.364973962,-0.0311499499,-0.435496807,-0.240819171,-0.103990935,0.0666108206,0.134246081,-0.204631478,-0.317512065,0.103462145,0.232386142,-0.590666115,-0.123642392,0.423843026,0.21480976,-0.0622116402,0.165556744,0.267620862,-0.17427367,-0.38858375,0.260812134,-0.612343729,-0.467765093,-0.277314693,-0.0991087779,0.293900937,-0.47958985,0.160622552,0.372052222,-0.22806491,0.051264815,-0.373901367,0.163061067,0.173362091,-0.333832175,0.347590029,-0.50768441,0.174338341,-0.0894071385,-0.179200709,0.651162803,0.220686376,-0.316420525,-0.407060742,-0.0489392281,-0.0651665479,0.181665376,0.183021992,-0.0847008526,-0.481068522,0.0690325126,0.222728118,-0.330754936,-0.519640744,-0.219286501,-0.573257208,-0.103523858,0.271358162,-0.0937540382,0.392480463,-0.173478305,-0.331121057,-0.473417222,-0.0605511293,0.446207672,-0.249693736,0.0531277135,-0.211850867,-0.218728185,-0.362825036,-0.382769108,-0.117082022,-0.0269232336,0.134232953,-0.289880812,-0.00349852932,0.166968912,0.373938859,-0.455815971,0.13228099,-0.429290771,-0.373226464,0.292961627,-0.127898097,-0.317250133,-0.513857901,-0.286063761},{-0.431279719,0.00935490616,-0.0174581241,0.0192854833,0.214850932,-0.0191248246,-0.0939564183,-0.0159667674,0.0983628184,0.226592034,0.0309131462,-0.320211232,0.0878605917,0.327221811,0.274622738,-0.342900813,-0.373965979,-0.376502395,-0.0649189651,-0.123961829,-0.375807554,0.00323554338,0.683733284,0.342597991,-0.467206091,-0.148468837,0.370452881,0.322323442,-0.227597222,0.40796876,0.197764516,-0.593023241,-0.0879219845,-0.18455717,-0.566332519,-0.740781248,0.34367463,-0.460730702,-0.438010812,-0.445441008,0.185562804,0.121593423,0.613446295,0.400054246,-0.146468058,-0.192935467,0.109639116,-0.417092144,-0.224577636,-0.439185053,-0.217787445,0.0993654802,-0.460088819,0.459238023,-0.277210593,0.429720432,-0.140056074,-0.292911142,0.0192155167,-0.507784605,-0.138721779,0.21001789,0.638671875,-0.271430224,-0.122031666,-0.186482683,-0.142541543,0.0895761251,-0.427824169,0.623535156,0.719270825,0.43704322,0.405336678,-0.278262049,-0.236813486,-0.00830388721,-0.23101373,-0.566488504,0.185053885,0.486440361,-0.0264450833,-0.10594514,-0.0542098731,0.017169483,-0.118407562,0.156780392,-0.101028718,0.0937129557,0.19137004,0.144044295,-0.621916115,-0.469662309,-0.224122688,-0.605009198,-0.00391869619,0.338753343,-0.0498285368,0.096678324,0.0214289669,0.348499656,0.401307106,0.195203513,0.0415139273,0.0812972635,0.415062606,-0.13531369,0.179215267,0.0888796821,-0.105426058,0.575969815,-0.255944282,-0.0902953148,-0.00762594957,0.233425215,-0.285948992,0.0764284283,-0.219165891,-0.242601797,0.786914051,-0.598889828,-0.213017687,0.00218715798,0.319243193,-0.144544721,0.270444483,-0.263681382,0.374143839,0.109385706,0.143018484,0.134321839,0.18841131,-0.184648976,-0.19932726,-0.0096422229,-0.0431037731,0.486979157,0.268558621,-0.455951899,0.207516313,-0.0271238759,0.000538899912,0.117244065,-0.519208431,0.361439735,-0.0719740689,-0.00406639511,-0.260713786,0.559138834,-0.529451072,0.09611094,0.319403768,0.145398214,-0.136728242,0.101817027,0.0160532668,-0.11349649,-0.183555916,-0.020029949,-0.519446313,-0.426766783,-0.568478942,-0.0663677678,-0.466831148,-0.444843739,0.0118756238,-0.16214183,-0.4208785,0.214743257,-0.163085178,-0.340705067,-0.018258851,0.264622957,-0.385397166,0.411219835,-0.646205366,-0.00583877321,0.0405232012,0.443281263,0.374084473,0.0507796928,-0.189360872,0.12137986,-0.223133489,-0.129836559,0.532714844,-0.411132812,-0.0425416864,0.21587792,0.0708160028,0.458032101,-0.175771266,-0.178114548,0.201186165,0.20999077,0.159188762,0.0925199687,-0.421716958,-0.00276432605,-0.113785774,0.183064774,-0.0230700783,0.251975328,0.462375224,-0.50562501,0.271457255,0.0259281062,-0.10008654,0.0550311059,0.406301409,-0.108939037,-0.435751557,-0.600446403,-0.624189258,0.127884969,0.37169382,-0.115009338,0.248457685,0.45130384,0.383261204,0.407710433,0.231383264,0.527388632,-0.0700772479,0.0759147555,-0.417944342,-0.423758358,-0.414892584,-0.292867631,0.486591637,0.43146199,0.0372064486,0.211396873,0.439328462,0.0571447387,-0.472507656,-0.183082953,0.294852108,-0.357430041,-0.0554974005,0.126458928,0.551131487,0.0557083897,-0.00445753708,0.521267354,0.263671875,0.378346503,-0.0487189703,0.599575102,-0.0277780164,0.0428777598,-0.152854189,-0.609450102,0.0232722219,0.0204961244,-0.19072789,-0.0630901307,0.219813317,0.113117121,0.0995239913,-0.33779338,0.367237896,0.192878634,-0.145479456,0.25678587,-0.406161219,0.527750015,0.0495562628,0.352405906,0.163143888,-0.624782979,0.0668450668,0.207462862,-0.0949921906,0.0121901492,-0.0195584521,0.0621565357,-0.48728171,-0.250602514,0.429937333,0.177233681,0.192791134,-0.0438333116,-0.0905881971,-0.0529715791,-0.550907254,0.126253083,-0.439343274,0.144499198,-0.404898971,-0.344906837,0.104480796,0.207542777,-0.521658003,-0.0945106223,-0.127942324,-0.0660727173,0.46407783,0.481445312,-0.295930862,-0.0795442387},{-0.147388399,0.1889714,0.0891342461,0.386707664,-0.0727372468,0.457203597,0.152850971,0.414011091,-0.0345177129,-0.355638593,-0.0781356543,-0.065173097,-0.476093739,0.602734387,-0.486421138,0.483656257,0.641462028,0.515625,0.514003515,0.133721486,0.46575892,-0.127423793,-0.00553082768,0.137230918,-0.0142020229,-0.0133192865,-0.128900722,0.121808521,0.534787714,-0.572400331,-0.566472471,0.255708724,0.212251276,-0.3624354,-0.0350310355,-0.470614791,-0.188408852,0.413020819,0.134302869,0.0998099819,0.406268418,-0.0319514312,-0.0162369143,0.226129875,-0.00237576198,-0.513484895,-0.515500307,0.457231015,0.154302567,0.26168111,0.198723122,-0.0403441451,0.336013943,-0.0590603799,0.0964787528,0.0306250285,0.138157055,-0.0566508844,-0.271498144,0.00189506914,0.358219057,-0.310244054,0.426632106,0.520659745,-0.379936337,-0.0314736739,-0.311489344,-0.502771318,0.198728099,0.231935456,0.481215924,-0.572318435,-0.201646209,-0.650318265,-0.356341422,-0.390724838,0.027963832,0.344886184,-0.139060304,0.0278885998,-0.19867754,-0.467813581,0.411281407,0.720947266,0.579848349,-0.0683753714,0.399366796,0.249246404,0.506049931,0.00534063857,-0.0761537179,-0.0956945419,0.175240442,-0.200669035,0.278320312,-0.0315824971,0.188037917,-0.503122747,-0.1839232,-0.10375908,-0.0488415286,-0.56640625,0.569227457,-0.728794634,-0.212041244,0.408598691,-0.253790617,-0.0700698495,-0.547356606,0.12980026,0.197805688,0.432568848,-0.437011719,-0.0397960171,0.179677799,-0.0484189764,0.071087271,0.125270247,0.283293068,0.0191212725,0.0874306336,-0.107198797,-0.494140625,0.00907879323,0.515391767,0.39640215,-0.501096249,-0.0293704029,-0.188420683,0.503092468,-0.00169862923,-0.53521204,0.204561025,0.0910574049,0.0690759867,0.0292996876,0.0618589818,0.292952925,0.415889919,0.0295565408,-0.634114563,-0.0222185478,-0.0466160737,-0.415293247,0.259765625,-0.373245031,-0.589577436,-0.10911458,-0.185076207,-0.0561643131,0.657552063,0.404209107,0.455026716,0.621954441,-0.114812613,0.0254026148,-0.0182838738,0.135209799,0.272403479,0.201163575,0.169390768,-0.232458308,-0.0399218127,0.0673858374,-0.619401038,-0.620390654,0.297788084,0.0485141277,0.404179692,-0.0986515507,-0.365192235,-0.0215809625,0.0499404073,-0.28322354,-0.244537577,-0.14299123,0.333833247,-0.0730324015,-0.072775349,-0.0700534284,0.0705590248,-0.228939921,0.204140112,-0.269493043,-0.416909069,0.287050039,-0.212867692,-0.148371294,0.253901899,-0.0159779061,0.0154878302,0.0922917649,-0.635366559,0.0722569302,-0.558749974,0.303659528,0.00177901844,-0.155724153,0.0819889456,0.0237181298,0.145959541,-0.0695521683,-0.497687101,-0.0371072851,-0.00304523529,-0.564257801,0.31450814,0.368989408,0.00295355776,0.0241857953,-0.0164478067,-0.407124698,-0.273263812,-0.0155085735,-0.26565668,0.304736167,0.0594220757,0.0293213464,-0.275468737,-0.22551319,-0.0548079833,0.201647803,0.33587423,-0.0400019959,0.302766144,0.376824826,0.159711733,0.0705551505,-0.436115056,-0.000163883175,-0.42088002,0.391091675,-0.552860379,-0.413235307,0.5546875,-0.0235570185,-0.479586691,0.435456723,0.492123097,-0.118351787,-0.00232998282,-0.423735112,0.807291687,0.289882332,-0.129386961,-0.242180526,-0.311486036,-0.117785923,-0.157235071,0.309449136,0.501911104,0.261799961,0.182704225,0.439586073,0.59749347,-0.11862006,-0.131359041,0.42163825,-0.236323804,-0.10839431,-0.20803529,0.470764816,0.464660645,-0.246067688,-0.180160612,-0.0873412266,0.223598048,-0.140668273,-0.162018135,0.367919922,-0.0734370127,0.616838753,0.0360328369,0.168447122,0.116151184,0.532175183,0.278142065,-0.0546941869,0.158692554,-0.535386026,0.00586763304,0.0937367305,0.390643597,0.113209508,0.0427208319,-0.226420358,-0.182568565,-0.0950052068,-0.147481471,0.399277747,-0.548988998,-0.154732943,-0.200217202,0.497070312,0.552148461,0.0734813735,0.322170526,-0.0993872136,-0.103527337,0.0847363472},{0.449147463,-0.2049492,-0.318341047,-0.216746703,-0.194756031,0.129351124,-0.279156178,-0.580015123,-0.398126781,0.0774247944,-0.559865534,0.0615635253,-0.0329262614,-0.0290080011,-0.0472438298,0.26752758,-0.0736908466,0.320210069,-0.200676456,0.0068996395,0.197295651,-0.402307749,0.481356531,-0.458473563,0.118892975,-0.719572365,-0.326002508,-0.0890799314,-0.496935606,-0.0756543353,-0.0776226074,0.0186817236,0.412960231,-0.121096812,0.223175541,0.162152931,0.132848725,-0.192802891,-0.01621967,-0.0466011241,0.131908074,-0.57163918,0.116194434,-0.0317068882,0.237278,-0.260746598,-0.27926445,-0.0155416802,0.0107527375,0.00443766406,-0.661503255,-0.657483578,-0.218737721,0.0495302081,0.290975422,-0.283203125,0.0221213568,-0.525255919,0.533611894,0.154889271,-0.591966689,0.0488094911,-0.0452282839,-0.598017931,0.330279171,0.0795502812,-0.56651473,-0.0387944877,0.590523124,0.110834464,-0.422234774,0.173767611,0.0568629839,-0.136705026,0.292660356,0.192891687,-0.078152366,-0.221144155,0.680175781,-0.097652398,0.0972072408,0.147058293,-0.161117151,0.222559795,-0.0638488829,-0.220540836,-0.446377844,0.785781264,0.0435456969,-0.255837023,-0.245596632,0.0874387622,-0.394539058,0.373107702,-0.143128783,-0.554036438,0.0758781806,-0.0606653467,0.299765617,-0.41009602,-0.25192371,-0.156724587,-0.119576812,-0.427662045,0.722412109,-0.619221985,0.102482699,0.249249488,0.586069942,0.36424154,0.46333164,0.156277314,-0.161192179,0.488489032,0.370933324,0.22405681,0.263581157,-0.434517682,0.58571744,0.50739181,0.375082761,0.161132812,0.512251437,0.700994313,-0.238318712,-0.0785665661,0.0949567184,-0.211914062,-0.0165681504,-0.130397469,0.4159334,0.471788198,0.49796316,0.260709137,0.407820165,-0.237264663,-0.0432308018,-0.0734954476,0.0570905916,-0.217770144,-0.171854407,0.38350299,0.193845913,-0.114753477,0.491032124,0.536971807,-0.110283762,0.240189016,0.146818697,-0.19681637,-0.00205257791,-0.62109375,0.00396355614,-0.147484586,0.512772143,0.469894946,0.0759167895,0.531674564,-0.12840648,0.509874105,-0.1796875,0.0822705552,0.554880381,-0.0631440356,0.35065183,0.461971521,0.582442462,-0.450371087,-0.5078125,0.661994457,-0.168019176,0.0798559636,-0.0993808955,-0.0856677815,-0.470617592,-0.354344845,0.169938654,0.0418710709,0.0392004251,-0.207539201,-0.754616499,-0.0101673659,-0.0800771415,0.105510063,-0.101830654,-0.205526382,-0.472591132,0.562073886,-0.0659214184,0.230549097,0.607954562,-0.519239724,-0.0628855452,0.49017334,-0.152332753,0.670099437,0.523615062,0.125709966,0.51171875,0.402394146,-0.292166948,0.52849561,-0.120828532,0.0854513869,-0.504132688,0.187906101,0.137199,-0.28319037,-0.0967239812,-0.295947075,-0.159615949,0.0208551195,0.490141362,-0.160581619,-0.117885187,0.0120824594,-0.467704237,0.207503736,0.115254365,-0.538837135,-0.490361214,0.0574868098,-0.243277073,-0.194777206,-0.115225993,-0.0583138354,0.0247911401,-0.105478197,0.225146621,-0.100354977,-0.0854372829,-0.434413373,0.0700821802,-0.185997412,0.27240023,0.524876654,-0.112709403,0.0646953583,0.0886594951,-0.00680827443,-0.353575408,0.258657724,0.369168133,-0.097184822,0.0822280943,-0.689275563,0.10153687,0.481514722,0.117667116,-0.104434863,0.0102777425,0.0742182806,0.32628122,-0.372290045,-0.0678536892,0.244119942,-0.0341740809,-0.198665887,-0.487680286,0.00510482211,-0.0540546589,0.0447603576,-0.21628502,-0.579874039,0.447037339,0.264700055,-0.38474986,0.255720526,0.000331481802,-0.279330999,-0.405456275,-0.3203125,-0.253969938,-0.452435672,0.256887704,0.229425758,-0.218307838,0.0805304274,-0.102541,0.361184031,-0.094480224,0.265591532,0.0437015593,0.279177427,-0.360108972,0.350553751,-0.0232370086,-0.487242341,0.444439143,-0.116709024,-0.0410589278,-0.308552712,-0.0719822049,-0.159115702,0.0484746583,-0.420187593,-0.0824755728,0.134239778,0.0558735132,-0.495424122},{0.2163774,-0.4666285,0.2596602,0.68550533,-0.03169307,-0.15084244,0.48444733,0.0306651,0.6338867,-0.02917168,-0.13285786,-0.6333333,0.44728684,-0.37461326,-0.18655083,0.14843278,0.11541139,0.10422486,0.09482376,-0.64761513,-0.26751631,0.03847873,-0.12982243,0.01028618,-0.23048764,-0.30359805,0.2016211,0.02715661,0.09009683,-0.30070373,0.01881455,-0.11420853,-0.25021097,0.25989226,-0.43155184,-0.156763,-0.05076423,0.09793828,-0.11276864,0.26362035,-0.2355629,-0.3105953,0.2646386,0.11497605,0.0949976,0.16514383,0.05738689,0.02331614,-0.2753576,0.596855,-0.05834988,-0.31632838,0.11761415,0.15865721,0.5407366,-0.10129595,-0.45749164,0.49459136,0.12990052,0.7234375,0.09866605,-0.1332621,0.29671985,0.04591441,0.00671735,0.5789388,-0.0107519,-0.19285478,0.14013672,-0.32923397,-0.17923501,0.0766298,-0.03945952,-0.02182865,-0.7222222,-0.13425663,-0.5114437,0.21677007,0.46269333,-0.71875,0.48365885,0.44898897,0.19185442,-0.48609138,0.1440337,0.52271795,0.18809454,-0.45964843,0.3867762,-0.11939468,-0.40999755,-0.24274266,-0.08451342,0.683364,-0.32309043,-0.16944815,0.3690426,-0.20746213,0.14454591,0.0803347,0.09598872,0.41913742,0.18214774,-0.04211774,-0.4418403,0.15912594,-0.09782846,0.6893901,0.30089366,0.01720383,-0.04381195,0.02295697,0.2950075,0.08597848,0.05164032,0.51752234,-0.49185696,0.39565217,0.11376784,0.11137477,-0.06315893,0.35538214,-0.08887895,0.11715893,0.1210839,-0.5174083,-0.14456739,-0.4135693,0.29491144,0.28802177,-0.5592056,0.24555282,-0.03041169,0.5413836,-0.0942355,0.13719688,-0.50804573,-0.35244557,-0.37680036,0.81666666,0.5157597,-0.32315665,0.04542872,0.1743428,-0.21333098,0.13080558,0.09541544,0.0152374,-0.09082324,-0.36322662,0.50966007,-0.37491664,-0.2587758,-0.45652345,-0.453125,-0.37303308,-0.3581358,-0.5274959,-0.03611699,-0.23381314,0.44136718,0.6517223,-0.20752335,-0.20411411,-0.09378859,-0.03712285,-0.24830443,-0.27641618,-0.3223298,0.11527857,0.08177488,0.46141258,0.30664062,0.00408596,0.00466324,0.44153026,-0.09544373,-0.19473158,-0.18214239,0.27537593,-0.05113513,-0.45015192,0.5006083,0.00275422,0.36268198,0.02388422,0.16844466,-0.3105601,0.56991184,-0.40313184,-0.33591127,0.15713614,-0.29493174,-0.04030527,-0.40902454,0.15036075,-0.18402836,-0.6148727,-0.5517578,-0.07983758,0.31253955,-0.1269177,0.3251172,0.45501408,-0.12255932,0.44178674,-0.27345043,-0.66711956,0.18943723,0.463582,-0.33395466,0.49822918,-0.11156919,-0.4887615,-0.5199653,0.17721032,-0.05912139,-0.48375,-0.04276969,0.00473046,0.05548241,0.24887833,0.16270962,0.28507447,0.02579877,0.57575756,-0.08665213,0.02108213,0.09446494,-0.49185267,0.2036308,0.13913907,-0.1459507,0.5159393,-0.32320756,0.1040095,0.0876365,0.20009053,-0.22357488,-0.31083444,0.20363769,-0.33580163,-0.05300607,-0.7301683,-0.01237371,-0.00597802,0.43095702,0.16647023,-0.29674822,0.22104879,-0.37808642,-0.04335954,-0.10790119,-0.10101579,0.05480273,-0.2426548,-0.30071905,0.07199562,0.27331868,0.45226258,0.05164442,-0.28614882,-0.01890211,0.01201986,0.15136845,0.13232233,-0.10792128,-0.7509191,0.22555174,0.14597605,-0.20360895,0.06104647,0.14795315,0.33887675,-0.21532428,-0.1841113,0.08492673,-0.19084764,0.11623043,-0.30452475,-0.55996096,-0.5133523,0.17680287,-0.53378904,0.5506488,-0.07689768,0.35457727,0.01869292,0.16062899,0.11494015,-0.13813089,0.05308203,0.08884783,0.24114652,-0.5058195,-0.21870995,0.16020416,-0.2348163,0.48317188,0.3623995},{0.02268587,0.13527288,-0.13717577,-0.02397323,-0.3400442,-0.31920752,-0.03853947,-0.11960952,-0.16506283,0.42952368,-0.25017458,0.43349096,-0.07249478,-0.16109066,0.04331613,0.6832386,0.44940227,-0.0991854,0.20790245,0.43678635,0.06365978,0.5058594,0.15039772,-0.11737382,0.27639678,-0.20111476,0.08570381,-0.5013428,-0.00452954,0.13429165,0.41228694,-0.47079793,-0.49860147,0.5446538,0.58117676,-0.05275465,-0.55649036,-0.00914168,-0.33293268,0.42385098,0.02558919,0.16753204,-0.42988956,-0.27053264,-0.52317417,-0.4100201,0.5227482,-0.34375,0.6033458,-0.11205244,-0.17283604,0.15663737,-0.66071427,-0.09282617,-0.2084725,0.2577542,0.36312288,0.06568316,-0.12626201,0.38696545,-0.03406632,-0.459375,-0.6052827,0.36697477,0.26751965,-0.56651783,0.48080844,0.25969982,0.40377155,-0.01158663,0.1494229,-0.25023803,0.18357615,0.2636655,-0.1816311,-0.7031901,0.49224102,-0.3934627,-0.07758994,-0.29893228,0.01169817,-0.15957867,0.05749102,0.48985708,-0.27927524,-0.47191405,-0.25580484,-0.04295488,0.14748047,0.27429387,0.12375862,-0.60946375,0.01911235,-0.38187146,0.09472514,0.50544506,-0.18651459,0.2968406,0.57942706,-0.69173175,0.73394096,0.04407185,-0.0014443,0.2606486,-0.06766352,-0.18702957,0.00663376,-0.436238,-0.05299358,-0.2407238,-0.53102356,-0.25296876,0.5981027,-0.2118633,0.5951849,-0.19971569,0.4609375,0.1893698,0.00218536,-0.22893071,-0.734375,-0.23492905,0.01149376,-0.32015848,0.032571,0.19085607,-0.76586914,0.76017994,0.689098,0.00146871,-0.12156012,-0.0318199,-0.1327786,-0.510074,0.21785104,0.42666185,0.5915671,0.13429019,-0.17669481,0.27047002,-0.41861048,-0.54855937,0.51497394,-0.0077944,-0.49760142,-0.15915537,-0.00590547,-0.21242279,-0.2529635,-0.75039065,-0.43932292,-0.20070456,-0.9269832,-0.02633293,0.06931468,0.17389348,0.11817078,-0.08108597,-0.36807862,-0.54489183,-0.06447744,-0.02872632,0.08155229,0.5559082,0.69314235,0.18205261,0.00162446,0.49960938,-0.11651691,0.03332945,-0.2929651,-0.14855543,-0.2065283,0.08102392,0.11831939,-0.18945312,0.7089844,-0.3419173,-0.663208,-0.12009876,0.53413725,-0.09516925,0.0788112,-0.65866816,0.183524,-0.5604106,-0.15136343,-0.1094373,0.12790567,0.11622877,0.12546039,-0.25281733,0.46972656,-0.57513785,0.5058869,0.5215164,0.27351424,-0.33401018,0.22807474,-0.34569806,0.6873816,-0.27814943,-0.38572863,0.2518745,-0.25779688,-0.09695655,0.02495323,-0.13229392,0.0498241,-0.7659505,0.40359157,-0.07840084,0.20164649,0.28898242,0.07522972,-0.15970689,0.5821533,-0.1459873,-0.16793676,-0.09180357,-0.15528099,0.42256066,-0.51000977,0.5725538,0.13330512,0.02546389,0.5844184,0.27345404,-0.1093872,-0.24602607,0.0856663,0.65127844,-0.04446156,0.16942988,0.00610301,-0.6452546,-0.00179248,-0.03979467,0.23783053,0.32817286,0.11256212,-0.00219326,-0.15861115,-0.3416887,-0.49760798,-0.09304591,-0.10104576,0.2870396,-0.6472439,-0.24029401,0.37700155,0.20598003,-0.5779903,0.1752967,0.15766111,-0.657487,0.48938632,-0.5859375,-0.10817355,-0.2597172,0.4859375,-0.05478928,0.31914875,-0.08591107,0.05106087,-0.02614163,0.00138708,0.07302142,-0.10723367,-0.481566,-0.04137465,0.3730217,-0.5313331,-0.10939952,-0.04563225,-0.3437411,-0.3946446,0.32907635,0.00449211,-0.11261691,0.5071875,0.21330439,-0.25977373,-0.08833516,0.15727296,-0.43650776,0.08008558,0.61890626,0.04056935,0.24027093,-0.25385422,0.4759339,-0.16018158,0.00564457,0.25875604,0.45127842,0.034673,-0.65559894,0.30663583,0.20264459},{-0.360186845,0.371947289,0.139184311,0.133220643,-0.675911486,-0.581946313,-0.472941071,0.295867592,0.23833859,0.187982157,0.505689561,-0.177242264,-0.154814661,0.157692343,0.18859145,0.0656954795,0.253847331,-0.252062172,-0.0168546885,0.193362191,-0.12154226,-0.312629759,-0.285130441,0.271451086,0.579621017,0.426474303,-0.0192520376,0.259745657,0.394097209,0.0110468389,0.148528472,0.501702011,0.0805510283,0.167530626,0.00826700218,0.38353923,0.249268696,0.251006156,0.572198272,-0.149414062,-0.0695059523,0.643066406,-0.188903809,0.698567688,-0.0925257951,0.00761218881,-0.220168814,0.115295984,-0.102832705,-0.326747447,0.0537998788,0.273303658,-0.0722827241,-0.535239339,0.145502985,0.115206242,-0.0282274559,0.243302777,0.28125,-0.2665869,0.567649126,-0.0115886368,-0.162675485,-0.125792935,-0.551500797,-0.330067635,0.178683996,0.41095525,0.04954971,-0.242224008,-0.0435586274,-0.122084767,0.306652993,0.472370416,-0.00561261224,0.500406921,0.173740745,-0.0445984192,0.241758898,0.225604981,0.161643893,0.00599372247,-0.367913216,0.0808006451,0.254896849,0.19037047,-0.000185928642,0.541113257,0.248210385,0.0903638601,0.593017578,0.223165482,-0.165516809,0.0773993209,0.568892062,-0.303756148,-0.384440094,-0.319310904,-0.334033519,-0.243531957,0.187886819,-0.0505856611,0.483343571,0.550881386,0.0309280623,0.0475530326,-0.575985849,0.377001256,0.152827024,-0.109601729,-0.136729002,-0.764508903,0.107204139,-0.159162849,-0.0349278525,0.429840088,0.210488617,-0.0428842306,-0.117885165,-0.374966323,-0.364188045,-0.499511719,-0.172881305,-0.027697362,-0.466689855,-0.202709138,-0.0348180048,0.444414705,0.102813572,-0.0707726479,0.122973502,-0.422810137,-0.377917737,-0.123455271,-0.187954068,0.703876197,-0.191393211,0.0252219159,-0.0659490153,0.405157417,0.115212701,-0.133257017,-0.415149331,-0.170421049,0.0615042448,-0.0319367647,-0.47630775,-0.575954854,0.0367931686,0.0427590758,0.121304922,0.0122387009,0.128904536,0.537268817,-0.176714063,-0.00821873639,-0.683249056,0.0234930534,0.0937470645,-0.0286229029,0.0450309329,0.296834737,0.344654828,0.298948437,-0.250139177,-0.198708162,0.175765172,-0.147462696,0.0628967285,-0.431371242,-0.562597632,-0.499502838,0.133268669,-0.479204953,0.626220703,0.0406651199,-0.244753495,0.283831507,-0.368120223,0.493953347,0.232893571,0.459267884,-0.55640626,0.248833343,0.00570827816,0.0744405538,0.0405313969,-0.0230292678,-0.314552635,-0.196684256,0.253917575,0.3038221,-0.171329156,0.275321931,0.335838795,-0.131391421,-0.551817596,0.520856559,0.393822461,-0.71484375,-0.150330722,0.0304076746,-0.254027247,-0.359437436,0.110108227,-0.444223702,-0.531860352,-0.0515006781,-0.654557288,-0.144086763,0.0736888871,-0.195278302,0.0554782413,0.640335619,-0.0721953213,-0.316374362,0.198705152,0.578920722,0.548755765,0.190843031,-0.265592217,-0.0463664383,0.0625922456,-0.434244782,-0.1572299,-0.313519329,0.317459792,-0.387580425,-0.213358626,0.66681987,-0.544483423,-0.252923697,-0.282967389,-0.0649408102,-0.128405362,0.370134741,0.509812117,-0.157704487,0.660937488,0.0878423378,-0.117019534,-0.0981305316,0.115923919,0.112248026,-0.278368652,-0.479275167,-0.00730562629,-0.0464793071,0.265465736,-0.390658855,0.131348237,0.508687019,0.124851026,-0.164043024,-0.475401193,0.0805049688,0.0769445524,0.309529185,-0.0182001647,0.119154677,-0.562602818,-0.525065124,-0.340618551,-0.175742194,-0.529526651,0.423681915,-0.693474293,-0.404147267,-0.442988962,-0.0700352564,0.498502612,0.176721945,0.259687304,0.136236697,0.544921875,-0.0681021735,-0.0105986055,0.2255885,-0.640156269,0.660998762,-0.289121687,0.511541188,0.664576471,-0.288012922,0.300716132,-0.76677388,0.674913168,0.306575894,-0.0379167758,0.736742437,-0.419009119,0.142060488,0.482109368,0.122085273,-0.0707936957,0.114014693,-0.319333106,0.00958799571,0.776424646,0.564425588},{0.553158939,-0.0734903663,-0.6953125,0.248824552,0.469915569,0.351731837,0.0412427075,0.167310551,0.00453473721,-0.137174472,0.18017067,-0.37886405,0.26163435,0.0673559755,-0.0786247402,-0.0380826518,-0.619280159,0.0190313701,-0.591250002,-0.232916877,-0.0238765888,0.287007481,0.274453312,-0.0223380104,0.166958898,-0.50571239,-0.654296875,0.650449812,0.228912875,0.331920683,-0.287233174,-0.25585565,0.48104167,-0.573102653,-0.24020046,-0.625372052,0.0348994955,0.548560023,0.240178615,-0.333094925,-0.591619313,-0.438632816,0.508039415,-0.569169223,0.509499311,-0.0883487239,0.264638513,-0.101814799,-0.550215125,0.211816952,-0.474397093,-0.499472439,0.273496509,-0.205065891,-0.0275463313,0.519375026,0.197227985,-0.23733367,-0.560602665,-0.646188438,-0.188470349,0.672222197,0.0483123921,0.104211487,0.116473921,0.405755848,-0.109611221,-0.40046981,-0.56773603,0.515405536,0.0634924024,0.358457744,0.613498271,0.11648614,-0.578203142,0.122719981,0.0720422715,0.092088826,-0.000711198663,-0.56031251,-0.141125351,0.102549702,-0.62588203,-0.0744623691,0.0271041226,0.336742014,0.625732422,0.130359307,-0.212887451,-0.543945312,0.243576318,-0.412041426,-0.634345353,-0.0300288144,0.0394361578,0.0130437473,0.609089196,0.0517222621,-0.138213232,0.212436408,0.504154265,-0.442224234,-0.513671875,-0.205571443,0.231400177,-0.485608548,0.61342591,-0.114092022,0.0540943034,-0.403258979,0.0604949482,0.336090446,0.218247667,-0.671274066,-0.519071698,-0.586718738,-0.0383321382,-0.612595916,0.478740633,-0.096215196,0.261690557,0.747896612,0.101066694,0.259516805,0.747514188,-0.007032244,0.311444253,0.256778479,-0.686523438,-0.486436635,-0.228469953,-0.130317345,-0.756392062,0.133846417,-0.354633778,-0.5390625,0.206992909,-0.707421899,0.155834585,-0.674913168,-0.0309388582,0.177628413,-0.162628382,0.285080433,7.87945537e-05,0.0841811299,0.520806789,0.471413344,-0.385748744,0.265538841,0.284212798,-0.765806675,-0.617248535,0.222218797,0.14891994,-0.172351599,-0.119894497,-0.296875,-0.23230198,-0.112273976,-0.471634269,0.114016935,-0.147411823,-0.345776141,-0.458180159,-0.33594209,0.0847613141,0.33271423,0.189408451,0.521728516,0.657226562,0.227078646,-0.595703125,0.601422966,0.235835075,0.209053427,-0.00273138005,0.080506362,0.161119401,-0.390745908,-0.245603338,0.295850009,-0.305627435,0.60546875,0.0812519565,-0.0573474653,0.364317834,0.0581916571,-0.0251660198,0.37890625,-0.129930004,0.594184041,0.0446058773,-0.459836662,0.125048131,-0.0283280164,0.131838396,0.267508358,-0.0132531784,0.126008794,0.0114904856,0.127925888,0.146911114,0.131353542,0.59749347,-0.193921551,0.618825614,0.15727362,-0.337941349,0.218308315,-0.0589630306,0.117907718,-0.462872863,0.483497202,0.708333313,0.38957867,-0.180063263,-0.294944674,-0.344563305,-0.287148714,-0.0202358663,-0.453753978,-0.0230319966,-0.0920386091,0.240635023,-0.181582004,-0.225454941,0.59765625,-0.0246246066,0.106911965,0.000329105096,-0.118394904,0.22849232,-0.621299326,0.209556967,-0.219807222,0.118443325,-0.814453125,-0.0234661903,0.16161415,0.458108842,0.0836991295,0.532031238,-0.596191406,0.204638317,0.109871596,-0.593449533,0.0593279973,0.430299312,-0.768503308,-0.108131066,-0.23821336,0.500834167,0.26950261,-0.285096765,-0.408023149,-0.631799757,-0.0890708119,-0.699337125,-0.681640625,0.135703012,-0.154210031,0.178183556,0.206411511,-0.0445899852,-0.517795146,-0.204623953,-0.0423158929,0.487413198,0.0116068255,0.212004274,-0.0416651815,-0.142065108,0.597430885,-0.0931983814,0.0121055804,-0.102023095,-0.31336531,-0.460638553,0.225047722,0.124209203,-0.0883312672,-0.498490781,0.0680932924,0.00667744176,0.0678906217,-0.13086544,0.105684489,-0.326325744,0.0240949243,0.292058706,0.244192764,-0.033320345,-0.587343752,-0.298895478,-0.0243696738,0.595145106,0.355541527,-0.0541858785,-0.0439224467},{-0.0458902493,0.053965304,0.546285391,-0.462975532,0.157128051,-0.0615578629,-0.208994716,-0.508164704,0.14202863,0.264613807,0.317451864,-0.0951855853,-0.37305811,0.2501899,-0.375059992,-0.258764029,-0.176655963,0.605600417,-0.100520141,-0.377052188,0.379011244,0.165027216,0.022830341,-0.22229825,-0.399408132,0.105449401,-0.225132868,-0.216318384,-0.108124509,-0.723400295,-0.497170717,0.109149143,-0.0520714223,0.0592184365,-0.142568305,-0.283176035,0.424850762,-0.370253801,0.339863956,0.0744154528,0.334032983,-0.135186404,0.226545796,-0.13578634,-0.194874734,0.534939229,-0.110536352,0.223596185,0.104046077,0.0973904282,-0.260699868,0.550374329,-0.380777657,-0.331906885,-0.101532027,-0.367167562,-0.283364654,-0.0962193683,-0.0212065317,-0.0829970017,0.00429129694,0.271520972,-0.314432919,-0.196313664,-0.0793545544,-0.082734108,-0.264640033,-0.0730206221,-0.121562883,-0.122587383,-0.562239587,0.542265654,-0.166562334,-0.44976449,-1.00260413,-0.0349988677,-0.0454185084,-0.83203125,-0.261874735,-0.153287277,-0.378719419,-0.0837435573,-0.211895406,-0.255982727,-0.469667733,0.0484746844,-0.147956491,0.290998369,0.65625,0.488516986,-0.112567529,-0.141564205,0.450568169,0.183092117,-0.0367624909,0.0818024129,-0.00399377523,-0.665816307,0.271543562,-0.00383298146,-0.0099132983,0.156830415,0.082785815,0.126003832,0.137674674,-0.0418368019,-0.205005586,0.204172149,-0.222686201,-0.0913080499,-0.349520922,-0.0462741181,0.0348827429,0.275424629,0.288911164,-0.387802243,0.0300452411,-0.290998191,-0.442367315,0.265682578,0.131859794,0.0395630635,0.240811259,-0.10005416,-0.109574437,-0.315359086,-0.373064727,0.150827006,-0.13480632,0.817057312,0.0316612981,-0.215311691,0.063510038,-0.27534467,0.588252306,-0.0993302613,-0.29986912,-0.172363281,0.519581318,0.147974968,0.230922967,0.552368164,-0.0786126405,0.440386683,0.609049499,0.207906142,0.255734712,0.184585959,0.558459044,-0.414017856,0.394706935,-0.0972062945,0.336936086,0.140662774,0.284210861,-0.827473938,0.298934013,0.275279522,0.203604028,0.0401374102,-0.31630069,-0.567325354,0.192305461,0.168450415,0.533940971,0.0604609326,-0.0946816877,-0.658735812,0.610212028,0.203148127,0.302159399,-0.263727337,-0.000274839782,-0.226553917,-0.183079511,-0.0513645597,-0.421249986,-0.494229972,0.509765625,0.0912386104,-0.554332376,0.175365314,-0.170360595,-0.0903320312,-0.205146626,0.237747356,-0.273550481,0.155762792,0.202611461,0.562312484,-0.694695711,0.0076965671,-0.0339501165,-0.145051152,-0.0954596922,-0.479125977,-0.341961682,-0.0511379391,-0.269465506,-0.194783032,0.102511175,0.29980132,0.0453925282,-0.134708092,0.313445061,0.0722240433,-0.0535970628,-0.4893727,-0.205580741,-0.0160835031,0.188892797,0.249271229,-0.241682976,0.0185107086,0.204645097,0.0453824885,-0.0985652059,-0.0656581149,-0.650287807,0.56235534,0.2996777,-0.146977365,0.546805263,0.184049785,-0.308582664,0.131357118,-0.670572937,-0.250558704,0.058358755,0.343649149,-0.210478857,-0.042702388,0.366360784,0.0936882272,0.111843638,-0.359279722,0.246047825,-0.316423595,-0.165505245,0.556818187,-0.254951179,-0.200790063,0.0325463228,0.000606270449,-0.0861628577,0.544433594,-0.165585369,-0.244083181,0.0619543977,0.082406193,0.209469318,0.354350537,-0.26673156,0.061457783,0.484592021,-0.0210056305,-0.155248865,-0.359412998,0.0483604148,0.0467551351,-0.271463454,0.244183391,-0.657948375,0.319099367,0.568489611,0.198216826,0.0798506513,0.187410697,0.117414162,-0.146436825,-0.312522978,0.103991069,-0.0550622046,-0.358263463,0.844618082,0.0845282972,-0.828559041,-0.549958885,-0.2016626,0.0187326092,0.442278177,-0.00842202455,-0.0355187319,-0.180691838,-0.184588999,0.174665183,-0.352366,-0.138210908,0.705468774,-0.284156263,0.0739374235,-0.0358919874,0.170536891,0.186956614,0.155807748,0.21482262,-0.667629063,-0.120343581,0.177280262,0.301741719},{0.103205048,0.527508795,0.0182733033,0.0563248843,-0.149348468,0.0183328036,0.302697301,-0.318317235,0.493044972,0.665457606,-0.00515120011,-0.542678177,0.12845622,0.505633533,-0.720358431,0.324178964,-0.445118934,0.188953727,-0.326239228,0.310771018,-0.595588207,-0.178679049,-0.568359375,0.078321293,-0.0556805134,-0.369081438,0.281891525,0.358354241,-0.55359602,-0.183600217,-0.0983774289,-0.0176890232,-0.126015991,0.293998182,0.0896133333,-0.413984776,-0.399241716,-0.711425781,0.0207015555,0.226662606,-0.424843758,-0.282204449,-0.0447786339,0.00231200969,-0.346522421,0.22394532,-0.0375996009,-0.186496511,-0.358388633,-0.0297696311,0.239770621,-0.158220112,-0.179176435,0.350580007,0.0691443756,0.161601558,-0.113809898,-0.63537395,0.221682176,-0.0334479213,-0.334866136,0.397308141,0.145980284,-0.486360669,0.606085539,-0.154709727,-0.481037766,0.0404955111,-0.335982412,0.300647676,0.265674055,0.202160433,-0.340653062,0.0189502519,-0.416010141,0.234403163,0.287098825,-0.00513501605,-0.484771729,-0.012890216,-0.634765625,-0.351598889,-0.0326940864,-0.170319468,0.466455549,-0.0254319087,-0.0625663996,-0.161562279,-0.0477187186,-0.202090696,-0.200167686,0.612847209,0.237837359,-0.133342445,-0.708333313,0.178145215,0.220703125,-0.0986837447,-0.0298992246,-0.141093284,-0.0864257812,0.517805219,-0.268496096,0.0498618223,0.564941406,0.301745564,0.362112224,0.0522034541,-0.446351409,-0.0129758464,0.153805986,-0.132255018,0.380896747,0.646093726,-0.130861402,0.0454053693,0.6953125,-0.117444545,-0.266515195,0.415544182,-0.16988571,0.207615912,-0.584130108,0.452795237,-0.00280684046,0.10207621,-0.599881887,0.0634705946,-0.342810303,0.0940102339,0.514133513,0.195838988,0.141558617,0.419971108,-0.615781248,-0.00944045093,-0.0910061672,0.357572109,0.258762151,-0.478412837,0.320297986,0.0722129568,-0.250482976,-0.303638071,-0.029787045,0.664314508,-0.230471388,0.866699219,-0.00328326388,-0.0900921524,-0.142462477,0.0952837393,-0.0901051462,-0.33009401,-0.275423259,-0.630126953,0.177634582,-0.143087342,-0.671123803,0.155233905,0.219721049,-0.158218563,-0.332956851,-0.69921875,0.215363815,-0.141121358,-0.290161759,-0.0429136045,-0.730674326,-0.228928566,0.124489181,-0.0519974306,0.190377548,0.182614297,0.499696195,-0.787239611,0.12792705,-0.695800781,0.076186128,-0.741048157,-0.143997967,0.0888459608,0.405320853,-0.213852018,-0.0666645616,0.350620806,-0.624374986,0.287037045,0.288118809,-0.0578382127,-0.0147552146,-0.0705662742,-0.523181975,-0.0644470379,-0.195775524,0.237790227,-0.0901113823,-0.131382003,-0.147932023,0.563755572,-0.530949533,-0.613606751,-0.0385664403,-0.000759331218,0.236746967,-0.310599804,0.243546039,-0.174261972,0.659288168,-0.542848587,-0.688580453,-0.353425026,-0.15477322,0.175306171,-0.200180978,0.139607459,0.0942740217,0.356608838,0.165991411,-0.119424716,0.0803543702,0.700976551,-0.102388456,-0.245064154,0.607840419,-0.527669251,0.211062908,0.168461591,0.385858208,0.20993261,0.363158226,-0.552133441,-0.0174073298,0.294849545,-0.249733254,-0.141056627,-0.395188928,0.332185447,0.196279049,-0.156684458,0.032974977,-0.523168087,-0.333864182,-0.215305105,0.439907968,0.215272814,-0.357291669,-0.495793283,-0.50093317,0.164103851,0.0461761206,-0.139535591,-0.0146126011,-0.653645813,-0.0404397622,-0.152354673,-0.00837344397,-0.0248329509,0.517619669,0.223023385,0.227980301,0.0805850103,-0.113490678,-0.48428458,0.124835119,-0.24514696,0.336806953,-0.267522007,-0.294930071,0.30083403,0.0272162762,0.752929688,0.546107709,-0.216213614,0.0786255971,-0.620239258,0.630859375,0.175323665,0.337231457,0.147958636,0.0419720709,0.0666693673,0.335948855,-0.00161593186,-0.0615868084,0.440890342,-0.575796247,-0.370223731,-0.187406301,-0.44907406,0.56228888,-0.119147278,0.0499177836,-0.331085533,0.0232124012,0.347759604,-0.18109934,0.0388873704,-0.224630803,0.12034142},{-0.5859375,0.31454423,-0.24709801,-0.05575154,-0.55057293,0.08667054,0.6781851,-0.44228956,0.34949964,0.0423444,0.06522502,0.02488522,0.05251751,-0.5129523,-0.2801917,0.22167401,0.0322847,0.29095188,0.41078404,-0.02600538,0.24375302,-0.09159627,0.4063912,0.4589495,0.48368567,0.01565561,-0.10763469,0.14748995,-0.38071245,0.27634138,-0.1791647,-0.38364422,0.17331243,-0.02124674,0.4501439,0.11545309,-0.1435006,-0.08104789,-0.63671875,0.04494013,0.23245457,0.01468654,0.81063986,0.07904668,-0.66446316,-0.21089107,-0.42298138,-0.7395833,0.4619065,0.46416903,0.52441406,0.06197677,0.02062024,0.20158617,-0.3713928,-0.01293196,-0.77994794,-0.3652247,-0.34757966,0.11082485,0.22508308,0.07098689,-0.20511094,-0.32911602,-0.1577846,0.23432763,-0.04088872,0.2172448,-0.21955483,0.07497629,-0.34762332,-0.02190832,-0.06640734,-0.09253576,-0.08592857,-0.4861895,-0.18201584,-0.46182132,0.13772209,0.35728237,-0.07664026,0.27918234,0.5304008,0.18745725,0.9121094,-0.17531672,0.09035504,0.0515229,-0.45264667,-0.01672333,0.02374446,-0.36914647,0.13037947,0.29389566,0.12300638,-0.43892822,-0.07909384,0.14352585,0.4851117,0.393491,-0.33003205,-0.29101562,0.24927424,-0.13626747,-0.25061312,-0.30464312,0.13858508,-0.02127828,0.687248,0.32254463,-0.11352132,-0.395544,-0.04393182,0.18112405,0.12940685,-0.0749175,-0.16695768,0.5229048,0.2104598,-0.02837751,-0.5584754,-0.13864996,-0.44755223,-0.18994986,0.6383464,0.02529495,0.05207286,-0.05393159,0.3868234,-0.26151693,-0.03349666,0.11518784,-0.00648895,0.3163927,0.16356815,0.24065413,0.09909418,-0.29091692,-0.47677952,0.66341144,0.03215107,-0.10251009,0.40120968,0.06590541,0.22495915,-0.4988015,0.136245,0.12033776,0.10131636,-0.15771015,2.84375,0.20417932,-0.3202692,0.34179688,-0.06788678,0.36334476,-0.04695655,0.39563802,0.5332661,0.38271123,-0.03993298,0.55859375,-0.0040448,-0.166459,0.09080684,-0.5179311,-0.02853361,-0.2255584,-0.02062235,-0.15284368,0.01633691,0.05272355,-0.06422064,0.32697335,0.08050867,-0.43841422,0.38068914,-0.22708897,-0.23862863,-0.25286898,-0.4112897,-0.5649414,0.00651095,-0.5313847,-0.5875,-0.16557452,0.5385156,-0.7142428,0.0352872,0.01722594,0.42472216,-0.4196032,0.15381622,0.4207497,0.03724823,0.06247004,0.03674803,-0.1923189,0.11529493,-0.01832289,0.57612747,0.45522836,-0.7135417,-0.06541643,-0.08644454,-0.01364434,-0.143984,0.02946813,0.3330602,0.15967368,-0.37691158,-0.15573385,0.24952756,0.10205349,-0.66220236,-0.6178043,-0.6237399,0.15334879,0.30189633,0.34630054,0.52548826,-0.22851951,0.28510782,0.02941456,0.3495062,-0.09740538,-0.12057105,-0.6726074,0.61621094,0.0248752,-0.33584827,0.0310918,0.1024851,0.02015268,0.4217337,0.23197933,-0.6040039,-0.6467285,0.1248409,0.28337455,0.8179687,0.63793945,0.2250702,0.2250784,0.31627,0.01663931,-0.25298053,0.18996318,-0.1303477,-0.0698344,-0.18217212,-0.3028619,0.06643497,0.00577275,0.2753862,0.32313702,0.15486468,0.17532732,0.13878039,-0.15136881,-0.15617077,-0.03210068,0.06913186,-0.06184539,-0.1425515,0.03920308,-0.07934543,-0.625,-0.04318483,0.5510817,0.35815015,-0.5174479,-0.31065804,0.05348758,0.16209182,0.43708882,0.12348513,-0.02123377,-0.06961124,0.08107498,-0.06736122,-0.2586891,-0.12846096,0.19186741,0.06762822,-0.27542698,0.18310934,-0.7109375,-0.5603841,-0.06958092,-0.64251894,-0.5556127,-0.44232827,0.38753256,-0.16890381,-0.09517716,-0.48978183,-0.05928257,-0.38556588,0.05495448},{-0.20075798,-0.146944195,0.328797251,-0.14878583,-0.00147049432,-0.752297819,0.193379745,0.588942289,-0.0630654767,-0.500292957,-0.432763666,-0.278360397,-0.245222539,0.291055977,0.333770752,-0.120553106,-0.313325673,0.361323714,0.0720041618,-0.279108733,0.0981549695,-0.881835938,0.0678632855,-0.373979449,-0.684960961,-0.0366229378,0.607244313,-0.0626911148,0.114992648,-0.478406101,0.503135264,0.209083766,0.258807629,0.345793486,-0.0654419661,0.0398943648,0.719815314,0.018242402,0.102049813,-0.196259707,0.655273438,0.065217182,0.0150584197,0.552300334,0.294145197,-0.162148342,-0.638877451,0.379536301,0.207418472,-0.613451064,-0.388653338,-0.26464507,0.168436229,0.686383903,-0.678281248,0.0555220321,0.635485172,0.0281266365,-0.096676603,-0.413043112,-0.102332808,0.157264709,-0.491199434,0.278278232,0.238697723,-0.23781006,0.374911219,0.124872826,0.261786729,0.42771861,0.400308937,-0.413998246,0.0295806676,-0.243595451,0.370605469,-0.342735767,-0.284184903,-0.115255922,0.412799716,0.701660156,0.267780185,-0.582291663,0.149933904,-0.668945312,0.121796325,0.113526605,-0.59765625,0.383753926,-0.294076115,-0.0915707648,-0.511614144,0.0400965661,-0.275354952,-0.319085538,-0.191889554,-0.124451771,0.309619486,0.52000761,-0.403955549,0.524414062,-0.572716355,-0.198652148,-0.0758930892,-0.0222618561,-0.161173061,0.549665153,0.223036215,0.119562924,0.369028091,-0.209508628,-0.0113193579,0.590021312,-0.366867065,-0.0725082755,0.214764178,-0.0164470635,-0.392398536,0.0216409583,0.32431826,0.146007881,0.0191824939,-0.290949404,-0.0623227358,-0.540515959,0.319339633,-0.0464872457,0.135288551,-0.156730205,0.17823112,0.177734375,-0.491594017,0.588753641,0.267497867,0.216858774,0.0401933156,-0.192765459,-0.651670277,0.58203125,-0.306554765,-0.0554054044,0.198770225,0.287720412,-0.675502241,0.498205841,-0.39249441,-0.260819137,-0.422871083,-0.233447269,-0.693098962,0.130418077,0.0254044272,-0.431538641,0.0345466696,0.0753989071,0.809570312,-0.309579104,-0.403140157,0.0918541849,0.011730304,-0.201680377,-0.138210714,0.206076041,0.857244313,-0.0385148264,-0.0206171889,-0.821874976,0.480543166,0.165573895,-0.196750984,-0.0532841273,-0.0553025194,0.582835495,0.564264119,-0.136768311,-0.104908548,0.331060529,0.288026839,-0.295947194,0.307507157,0.0162786376,0.034881562,-0.269665956,-0.263573706,-0.348511755,0.430449218,-0.342760295,-0.0783180669,-0.251983166,-0.610243082,-0.144533902,-0.208482414,-0.141562715,0.25788483,0.0986518562,-0.310412824,0.367205203,0.921875,0.176275492,-0.0834949687,-0.134204313,0.38268742,0.216289848,-0.156215861,-0.248856902,0.0327312462,-0.795138896,0.0559014529,0.407483548,0.155239761,-0.237355977,-0.176244408,0.150340974,0.385903656,-0.296857953,0.574916303,-0.0834997296,-0.285309106,0.0641961321,0.0353984572,0.0930535719,0.17476292,0.365271509,-0.185006395,-0.6875,0.000493223837,0.225534201,-0.0577378869,0.31812796,-0.561160743,-0.291968137,2.390625,-0.359520584,0.621651769,-0.138171554,-0.0283739883,-0.0598173365,0.0231152233,0.169407219,-0.272559822,0.0213021263,0.312503546,0.226032361,-0.603710949,-0.404061764,-0.159614071,-0.134287864,0.0859367028,0.79296875,0.00361729343,0.021005623,-0.0232401583,-0.464752913,0.279293448,0.377865791,-0.135761395,-0.9453125,0.288951516,-0.165962711,-0.394506693,-0.0222385414,-0.462758213,0.629394531,0.596905053,0.11080911,0.198292091,0.695430875,0.468715131,-0.186523438,0.0433487818,0.101132914,0.107793465,0.241652906,0.069054991,0.280299664,-0.49810791,0.165532783,0.191803336,0.598177075,-0.338851273,-0.385878444,0.230099246,-0.44033578,0.0737061799,0.625,-0.286983937,0.00177411095,-0.213831708,-0.236249864,0.2890625,0.201730967,0.142084137,0.0200040285,-0.777734399,0.818359375,0.304593682,-0.605794251,-0.0455347486,0.183662802,0.0888790414,-0.390429676},{0.39337713,-0.5830592,-0.05663756,0.16551016,-0.22998554,0.16206434,-0.12897815,-0.21387364,-0.5904948,-0.2687381,0.72012866,0.19478634,-0.5078765,0.7693257,-0.15184116,0.5511719,-0.11129931,-0.5461426,-0.17372532,-0.5347377,-0.47013345,0.6125,-0.09301949,-0.6177083,-0.19047125,-0.11428429,-0.3711716,-0.38330933,-0.17920946,-0.10575157,0.09619385,-0.14057516,0.73721594,-0.4607576,-0.37132302,-0.02065828,-0.25386488,0.1967122,-0.06207478,-0.00828786,-0.18743451,0.41003606,-0.12946701,0.26941857,0.07080369,0.11863641,0.14598392,0.33494118,-0.01108245,0.03735407,-0.09546454,-0.00270927,0.07935268,-0.02026077,0.24024111,-0.14115389,-0.5839844,0.17964263,0.0476844,-0.11599038,0.42071417,-0.04768115,-0.07129356,-0.0991082,0.02936872,0.11604126,-0.17731328,0.81953126,-0.0435447,0.1874478,0.6272879,0.03370076,0.49924266,0.07590053,-0.03021552,0.02709317,-0.66623265,0.55185544,0.06815089,-0.24840377,-0.2505599,0.6669922,-0.497493,0.409035,-0.64404297,0.79036456,-0.37785876,0.21633549,-0.11106002,0.03634333,-0.2920011,0.43899655,-0.0683611,0.5760806,-0.10520217,-0.06418094,-0.5344769,-0.15574278,0.34950778,-0.03463998,0.32243818,0.34188178,0.22312312,-0.6107856,-0.0346857,-0.42098215,-0.44904348,-0.21273407,0.4985665,0.19420926,0.75130206,0.19625612,-0.11716878,-0.48253906,-0.36766157,-0.15964009,0.10965402,-0.5114247,-0.5419922,-0.48800746,0.44053248,0.12231761,-0.27721474,0.02741326,0.22566026,-0.66359377,-0.06313967,-0.5249256,0.01926416,0.02962596,-0.6643145,-0.6933594,0.3977651,0.06880634,0.10986328,0.16800843,0.4685925,-0.04636861,0.09006574,1.103125,0.14060615,-0.26362392,0.08093463,-0.0859802,0.13812746,0.3347684,-0.20505834,-0.07153373,-0.44636694,-0.5855914,0.76384944,-0.24172331,-0.02375622,0.00126397,-0.0150278,-0.23104292,0.6053292,-0.04587765,-0.0923003,-0.3750071,0.33486715,0.00261253,0.12061445,0.04821008,-0.12556513,-0.24830239,0.26356405,0.08052845,0.33576834,-0.6547476,-0.12793955,0.10839974,-0.31614274,-0.7453125,-0.02490455,0.10887957,0.56645906,-0.10450692,-0.04550666,0.2157701,0.40441743,0.01761775,0.2441885,-0.02808222,-0.33320314,0.51930803,0.06789193,-0.18703824,-0.2607466,0.8955078,-0.5813679,-0.64234376,-0.34081748,0.03992962,0.19973683,-0.24793172,-0.21335138,-0.48195985,-0.44148973,-0.5324219,0.18700908,0.6716797,0.60839844,0.5920139,-0.03071283,0.24206303,0.28122056,-0.3438016,0.51713103,-0.37903413,-0.21345624,0.03892083,-0.02224076,-0.12838618,0.16157405,-0.01498659,0.4857253,-0.1772461,-0.06471732,-0.9296875,-0.0720411,0.09356798,0.7158203,0.34552243,0.10517291,0.04931823,0.06234674,-0.04820193,0.17526276,0.48442852,-0.11987237,0.1025089,0.17330503,0.20458896,-0.3945707,0.12840071,0.690625,0.04604574,0.00615758,-0.37205595,-0.5240625,0.02588856,-0.2694914,0.3718967,0.55204135,-0.2216951,0.33597088,-0.18613365,-0.25199038,-0.20416734,0.6174769,-0.00570507,-0.45129588,0.1189073,0.09280375,0.60058594,-0.19285534,0.04187514,0.32321554,-0.40821815,0.70535713,0.39252025,-0.40993088,-0.31630915,0.27235672,-0.06172292,-0.32419872,-0.11988889,-0.7679688,-0.23630323,-0.1704424,-0.1217801,0.32035062,0.4070956,0.4081875,-0.04294183,-0.6186849,0.04683778,0.0321836,0.56648934,-0.12209085,-0.17274196,0.2910197,0.13724948,0.44933268,-0.19375551,-0.05246654,-0.00701976,0.12459834,-0.00431773,-0.01983131,0.6394676,-0.22605509,-0.11523356,-0.09497862,-0.17438067,0.06675808,0.28911734,0.02338608,-0.11117733},{0.245132968,0.671744764,-0.556332231,-0.249266505,0.055405736,0.621562481,0.113949291,0.0625421777,-0.134815276,0.107364587,-0.108858027,-0.202605113,0.596788168,-0.0551877469,-0.583400965,-0.569010437,0.212470531,0.0817575231,0.251563936,-0.0932669863,0.699707031,0.0729796588,1.203125,0.106956102,0.0838024467,0.237662047,-0.54287684,0.221260592,-0.7265625,0.0415147245,-0.790039062,-0.221199021,-0.723307312,-0.310654283,0.272596002,0.553168416,0.305664062,-0.151877701,-0.264730126,-0.0731904507,0.103783116,-0.241671324,0.0827596635,-0.477176338,-0.0303707514,0.0451619551,-0.154292166,0.578638971,-0.474894494,0.123915732,-0.554242074,-0.0739774331,-0.261673808,0.0730104372,0.331957698,-0.653166115,-0.175279483,-0.149410337,0.424804688,-0.303740144,-0.493311226,0.0932387635,-0.0227212887,-0.0404438339,-0.483893782,0.0470006056,0.0587141328,0.35738343,0.0281482246,-0.0494077615,-0.021573307,-0.298781782,-0.655348539,0.209895387,-0.321351945,-0.239683703,0.419109523,0.266449422,-0.318268836,0.190444529,-0.179125443,0.0774235278,-0.312474459,-0.410031974,-0.25016275,0.216261879,0.326819599,-0.368886977,0.0683648586,0.588671863,0.474232465,0.117245167,-0.443335563,0.231514946,-0.282986104,0.27443099,0.78125,-0.0289600082,0.052604489,0.249354586,0.0688298121,0.0668909997,-0.156205878,-0.248806164,-0.0988608673,-0.274373382,-0.0666401535,0.563119292,0.260703743,0.428385407,-0.6640625,-0.579465926,0.185521349,0.0482040495,0.320330411,0.269473195,-0.0895857364,0.330831975,0.133807018,0.690848231,0.614257812,-0.0844974667,-0.922851562,2.09375,-0.759374976,0.53560698,-0.33003819,0.00121189107,-0.219498932,0.241172865,0.352393627,0.05128178,-0.0560571998,-0.0786080286,-0.00854612049,0.0569202974,0.033602789,0.0555468202,-0.0448810086,0.0663989335,-0.125532672,0.00618928671,-0.294845223,-0.507242858,-0.105579421,-0.0644293502,-0.286186278,0.38869521,-0.0591355413,-0.0321130157,0.185060591,-0.0404195711,0.263641685,-0.194748566,0.434587449,-0.0839831755,-0.225131571,0.675896168,-0.451265782,-0.772265613,-0.803710938,-0.433518618,-0.702302635,-0.103019394,0.0373739488,-0.0173145849,-0.558749974,0.00967421196,-0.0891103223,0.301892281,0.514181376,0.184074804,0.348498106,-0.0201235395,-0.305671871,-0.110085994,0.0732745379,-0.162076637,0.0128419679,-0.611165345,0.19586131,-0.122055106,0.631036937,0.388822109,0.653790534,-0.755642354,0.205595464,0.442274302,0.427047729,0.19776538,-0.396551341,0.237885907,0.372832239,-0.244214326,-0.0314864628,0.122052684,0.211887598,0.0924857929,0.0633958876,0.246003509,-0.118884191,0.0671465471,0.266607285,-0.59375,-0.407056063,-0.0593346655,0.174373761,0.205473229,0.073451452,0.0559120737,-0.138143852,-0.239266694,-0.307653129,-0.719618082,-0.310464531,-0.208031371,0.295814902,0.246662915,-0.13864769,-0.0187942479,-0.408171356,0.147426218,-0.412767977,0.479817718,-0.173765793,0.320198089,0.505458713,-0.135707989,-0.00328525715,-0.133805051,0.16071333,0.326334625,-0.11059434,-0.235408649,0.704492211,0.075699009,0.371894866,-0.268616736,0.0632763207,-0.086179547,0.244799435,-0.0584517717,0.137146965,0.0827969983,0.0148760946,-0.276442319,0.213832617,0.33109808,-0.0529831909,0.676822901,-0.694444418,0.111039445,0.145418435,0.521504521,0.400282115,-0.363305837,-0.461134791,-0.226118803,-0.179711148,0.369857788,0.0279395506,0.146499783,-0.187931091,0.558169186,0.029440131,0.107421875,0.26579845,0.643415153,-0.196756184,-0.31234929,-0.0957073346,0.420904219,0.00772116613,-0.0161897335,0.0142242098,-0.291015625,-0.26562202,-0.14496325,0.60167408,0.412068099,-0.67578125,-0.304516613,-0.065682292,0.349566609,0.245127007,-0.0969090015,0.00854592957,0.525219321,-0.115501016,0.601155579,-0.104064107,-0.388604909,0.372319251,-0.199158922,0.440886617,-0.257571042,0.400390625,-0.484016925,0.589579821,-0.00971715804},{0.18022402,0.10810943,0.8391927,0.56233835,0.2812266,-0.20803899,1.53125,-0.6807215,-0.3105203,0.36329186,-0.30070567,-0.03331375,-0.01325323,-0.29790768,-0.42873475,-0.00771054,0.08202792,0.80915177,-0.04041452,-0.1557566,-0.15087385,0.41107327,0.13328364,0.65234375,-0.12416456,-0.05540803,0.05431489,-0.7679688,-0.0284102,0.10196985,0.35256463,0.31241086,-0.2872021,-0.10519441,-0.7810202,-0.19089536,0.17234853,0.12740411,-0.14699389,-0.5657552,0.16458693,0.3028598,0.36131346,0.20837131,0.18305343,-0.37692732,-0.25289044,-0.55309606,0.33618224,0.31546995,-0.02622848,-0.94433594,0.6703125,0.02166084,0.04871368,0.6503906,0.09964244,-0.03369278,-0.21332404,0.04378648,-0.69140625,-0.16801335,0.35844216,-0.24023198,0.14098786,-0.06541719,0.13869953,0.61159444,0.48572293,0.01696405,0.18110935,-0.08525818,0.08955321,-0.5483507,-0.15374911,-1.1796875,0.6503906,-0.27531293,-0.16897583,0.41392577,0.6100643,-0.05750642,0.33285487,0.27046207,-0.307743,-0.09915884,-0.22102809,0.6333984,0.12131541,0.16015625,-0.04961038,-0.01669326,-0.79657453,0.00936604,0.23627129,-0.7890625,-0.23568344,0.23967777,0.11450349,0.10656247,-0.46717584,-0.12108457,0.64481026,-0.31447873,0.3389639,0.12459031,-0.13274327,-0.35085076,-0.0201003,-0.2801989,-0.2988411,-0.21769822,-0.20806488,0.41688877,0.07228078,0.18265519,-0.26355013,-0.21436058,-0.0249311,-0.12986381,-0.31543782,0.4375,-0.3944326,-0.3798773,0.10837208,0.29501715,-0.16503417,-0.35046554,-0.05604953,-0.31936014,-0.10595098,-0.00696325,-0.16310462,-0.22323163,-0.30462128,-0.29389542,0.17330879,0.2293035,0.02621859,0.4964775,-0.33314732,-0.05347339,0.14747146,-0.8098958,0.3008708,0.44930822,-0.02813155,0.28514564,-0.225091,-0.2274968,-0.03211858,0.31537357,-0.17632177,0.24560858,0.19338167,0.06540322,0.4012904,0.17324169,0.06171257,0.23479572,-0.21289559,0.3574416,0.04873104,0.09205582,0.12030219,0.3524288,0.35228476,0.2734702,-0.28221947,0.00962476,-0.70028406,0.3053206,-0.44328126,0.10645369,-0.08023,0.5503217,-0.1244387,-0.04078018,-0.1386664,0.12283159,-0.07545649,-0.19821325,0.13765948,0.08447082,0.22703414,-0.2521616,0.7554687,-0.36909547,-0.09371807,-0.4790853,0.09228019,-0.23052078,-0.83834136,0.17481288,-0.36796087,-0.08536475,0.67903644,0.02772362,-0.17039023,0.05229922,-0.3819057,-0.3368936,-0.10057355,-0.41713542,0.14500658,0.14221604,0.10988837,0.09180328,-0.5272436,-0.06791958,0.05003414,0.39840177,-0.21632743,-0.04758354,-0.4178238,0.27261555,0.03057477,0.00813802,-0.5345459,-0.4334667,-0.6415365,0.03283576,-0.28886643,-0.01907032,0.40641034,0.44438428,0.12840839,0.04543035,0.27139604,-0.5539315,0.06170642,-0.2118805,-0.32230347,-0.35675898,0.03491269,-0.00257437,-0.14649387,0.56534094,-0.4657689,-0.03722947,0.5975133,-0.5760953,-0.48506674,0.0350413,-0.702908,-0.5727838,-0.07956574,-0.02525015,0.21487248,0.36817044,-0.07643934,-0.76060265,0.58607954,-0.02238263,0.03970981,-0.27730685,0.6312934,0.52229816,-0.30460897,-0.07908634,-0.08881858,-0.12135782,0.0922927,-0.10935995,-0.34158283,-0.12460575,-0.12936763,0.05004681,-0.12307693,-1.984375,-0.6495028,-0.2743771,0.18496883,0.21330673,0.2226196,-0.22507471,-0.35257,-0.08543371,0.22031982,-0.07682434,-0.48240042,0.12442122,-0.80078125,-0.01137241,0.6868107,-0.3729478,0.3983382,0.18013111,0.5450044,0.34565687,0.49137676,-0.18455562,-0.29983917,0.09912939,0.85435265,-0.3690029,0.2001223,-0.19776233,0.27922833,-0.2588377},{-0.12301593,-0.27041593,-0.17331317,0.45801693,-0.41004136,0.41771048,-0.5498047,-0.09719282,0.984375,-0.04664751,0.27252948,0.3491155,-0.69466144,0.03698521,0.08325061,0.4256144,-0.04402617,-0.32278997,0.00765491,0.03379427,-0.2173655,0.13129546,0.17717786,-0.07054531,0.01862408,0.1337911,-0.15473941,0.40117583,0.72991073,-0.35953468,-0.24213573,-0.8270597,-0.20900613,0.1415525,0.19142923,-0.5274508,0.05985006,-0.2347897,0.39944556,0.978125,0.05101424,-0.06713635,0.13334115,0.17574109,0.42090893,-0.45797294,0.30743116,-0.03319017,-0.75824654,-0.20892572,0.16358116,0.46635798,0.40541953,-0.17719726,-0.12647276,-0.06732251,0.3105044,0.10496806,0.08788128,0.20422815,0.12526825,2.046875,0.26367915,0.07250688,0.08985401,-0.4686737,-0.3484791,-0.16316126,-0.37084278,0.13866107,-0.14945984,-0.7386364,0.14104834,0.63991475,0.11370146,-0.15772209,-0.41432202,-0.19088052,-0.11561371,0.11253342,-0.04589889,0.03151462,0.02910309,-0.05516665,-0.16168767,0.07127853,0.512934,0.07712869,-0.02698971,-0.42286494,0.08723933,-0.07351622,-0.19136733,0.10543592,-0.5321452,-0.26357213,0.11236352,-0.83984375,-0.09622736,-0.46481213,0.5780588,0.24301623,0.30859375,0.20802839,-0.6278212,-0.11211914,-0.01421686,0.91503906,-0.3641293,-0.734375,0.23094317,0.05297917,0.48334193,-0.01281786,-0.2230268,0.11346978,-0.6084449,0.09270407,0.25201538,-0.2674379,-0.03329974,-0.06018487,0.13711946,0.04815999,-0.28710273,-0.09767788,-0.11768832,1.0117188,0.06716087,-0.15482713,-0.14207381,-0.26171875,0.7128906,0.02117335,-0.2182713,0.5623395,-0.15966393,0.10567209,-0.14731109,-0.15382698,0.6350911,-0.51136655,0.26679277,0.14596584,0.41767785,0.24064854,-0.08251001,0.60759944,0.19349319,0.46969038,0.09838867,-0.16791598,-0.7178385,-0.09303551,-0.59105605,0.21971287,-0.15430668,-0.6140625,-0.00731411,-0.28515968,0.14064752,0.06982855,0.7079613,-0.5278033,-0.38762224,-0.06470214,0.72944975,-0.11715874,0.08514372,0.42125893,0.25128943,-0.31043494,-0.17329928,-0.18886882,-0.36927083,-0.30262712,-0.0618759,-0.56032634,-0.9658203,-0.09058849,-0.26860264,0.6164551,0.18400767,0.02693941,0.15763429,-0.46924824,0.12646705,-0.04770703,-0.16746992,0.07739707,-0.03958226,0.4910607,-0.09128215,0.64160156,0.08929963,0.88210225,0.10593837,-0.02914037,0.6744792,-0.1086693,0.25393626,-0.09901687,-0.21970786,0.05207512,-0.22404018,-0.12158146,-0.22996812,0.29182637,-0.07668257,0.59605825,-0.29198185,-0.5001371,0.66796875,0.3399484,0.0427944,0.64394534,-0.02717003,0.7327474,-0.23642096,0.02118705,-0.23388395,-0.12204686,0.19200437,0.10494267,-0.4860677,-0.14985189,0.36719567,0.49753457,-0.35926464,-0.21585384,-0.69673294,0.18299136,-0.23972656,0.73535156,0.5055664,-0.5579117,-0.09958714,-0.05983749,0.42001808,0.1864471,0.08491848,0.11334895,0.43737572,-0.14013793,0.11255629,-0.07342273,0.05467692,0.13867962,-0.3504877,-0.00388718,-0.35359728,0.32420412,0.4578683,-0.28612658,0.7706801,-0.08858583,-0.09032346,-0.6955423,0.07175661,0.26167706,-0.0216602,-0.21770957,0.02944491,0.0325636,-0.21728516,0.22655377,-0.24412407,-0.01399243,0.3571525,-0.04296972,-0.35527906,-0.01999318,-0.656529,0.80078125,0.30466136,-0.16208851,-0.18116637,-0.45572916,-0.01939753,0.32800433,-0.33694893,0.3094695,0.22901857,0.5071733,-0.44492885,0.29187885,0.28895032,0.04198169,-0.2733391,0.0778448,-0.2909566,0.17185217,-0.01497316,-0.06310807,-0.04855153,0.14110692,0.01814784,0.6166992,-0.12647101,-0.5983073},{0.35361207,-0.3671875,-0.1176496,0.10816073,0.61614585,-0.18360326,0.42170608,-0.0417467,0.07226562,-0.10431167,-0.02358957,0.10026077,0.23395921,0.11742307,0.6339844,0.04845127,-0.21722123,-0.01876974,-0.38167638,0.09785997,-0.09938764,-0.02466552,-0.25125137,0.15669136,0.31343457,0.5966283,-0.08473025,0.5684743,-0.09374703,0.1733799,-0.05266713,-0.08619355,0.01024174,-0.22696705,0.3733541,0.20849138,-0.0220531,-0.56640625,0.91341144,0.19290783,-0.00215786,-0.01318082,0.44527996,-0.3260742,-0.12649554,-0.05981756,0.03231198,0.04433244,0.82447916,-0.09596939,-0.14649214,0.12939714,-0.11598799,-0.2938965,-0.00904408,-0.23635764,-0.00821524,-0.3213079,0.1596672,0.31615943,0.18895705,-0.38262647,-0.14162357,0.18162435,-0.3280658,-0.13181953,-0.68173826,-0.5878906,0.11814852,0.80078125,0.03856184,-0.21534263,-0.23477902,-0.31540453,0.03801145,-0.06030342,0.0040047,0.05715298,0.31634903,0.05626358,0.36540252,0.18011522,-0.0817983,-0.14110254,0.28904575,-0.38369,0.167938,-0.02352243,-0.79589844,0.33178192,-0.815625,0.26669383,0.00237652,-0.05858127,0.4380034,0.39610747,0.04701531,-0.4324502,0.18356876,-0.35548905,0.23049265,0.02023255,0.1337597,0.4163313,0.0588509,-0.15473011,-0.30486506,0.34368923,0.1958655,0.09371655,-0.17335169,-0.067104,-0.6489583,0.11469505,0.42673737,-0.21829389,0.17486213,-0.06309839,0.02954258,-0.19041221,0.32019126,0.30275893,0.40288806,0.15817301,0.14985701,0.15760434,0.64160156,-0.08864319,0.33495277,0.6205469,-0.2793267,-0.3701487,-0.25024214,-0.44580078,-0.06739468,0.37406373,-0.333263,-0.55247396,-0.69199216,0.29294184,0.4473205,-0.20360644,-0.02112352,0.01293657,-0.72612846,-0.1195638,0.44259718,0.20809615,0.29186958,-0.31829888,-0.32115436,0.6547476,-0.51550215,0.44127113,0.04048995,-0.15038712,0.01221319,-0.4334162,0.32796612,0.07515022,0.525458,-0.09319402,0.31250557,0.34286222,-0.21179627,-0.11937137,-0.19131312,0.5628084,-0.35452798,-0.28110626,-0.3242484,-0.16452727,0.07541194,-0.112542,0.37591144,0.01679586,-0.6303711,0.21761446,0.26072377,-0.04285223,-0.02275532,-0.03461343,-0.10767892,0.13818827,0.28430238,0.15086254,-0.01976015,-0.5399577,0.69692093,0.2636963,0.22611351,0.06201789,0.06148146,0.24169463,0.29782462,0.00581075,0.44250238,0.31642425,0.19288416,-0.30279213,-0.06166571,-0.2275429,0.37174478,0.32993862,0.5037738,0.61495537,0.5218834,0.56866777,-0.12697719,0.3759561,0.6206597,0.60648775,0.09018739,-0.20351523,0.30953276,-0.36880928,0.17832743,-0.70814735,0.8226563,-0.17675354,0.09980673,0.946875,-0.7313058,-0.05575826,-0.07439861,-0.26553172,-0.5121528,-0.00357343,0.03218251,-0.4151893,-0.0627574,0.53105944,-0.17088307,-0.0395699,-0.1025345,0.7745536,0.16895723,-0.4013716,0.5748488,0.35828415,-0.02346793,0.53986675,-0.19034779,-0.06931083,-0.03217461,-0.41025,0.13332354,0.4041634,0.7080078,-0.3399417,-0.20895898,0.6377467,-0.07496653,0.15479279,-0.2334618,-0.58236927,-0.35172087,-0.31549534,0.22934335,-0.5552557,0.08009908,0.27915493,0.39756522,-0.21091077,0.8046875,0.29885495,-0.4441838,-0.4618156,0.01405827,0.25771484,-0.23521951,0.5369558,-0.45814732,-0.08224592,0.6547476,-0.41484603,0.4299466,-0.21345302,-0.29885417,-0.24635813,-0.24649511,0.796875,0.01266741,-0.32703662,-0.08669788,0.5601562,0.11662613,-0.06591509,0.18696603,-0.15082712,0.24977793,0.3045747,-0.13869569,-0.29499164,0.07709131,0.03185803,-0.2665757,-0.26762128,0.34277806,0.17429675},{0.0495757088,0.038972754,0.114326417,0.36805138,0.116126627,-0.278343946,0.0609911606,0.136647537,-0.232849121,0.304738283,0.149951875,-0.149875611,0.402272075,-0.112710118,-0.220653415,-0.218652338,0.294994831,-0.0693370625,-0.234709084,-1.03125,-0.304660231,0.234834224,-0.163649008,0.411082178,-0.567983747,-0.267590851,0.45703125,0.0513750501,-0.265469402,0.517361104,0.0417708829,0.8515625,-0.405303478,-0.15774259,-0.497597873,-0.0759152099,0.472226977,0.355557531,0.265574843,0.364257812,-0.149359807,-0.778764188,-0.694335938,-0.0569074973,-0.227031454,-0.756640613,-0.0217264835,-0.292849481,-0.122045144,0.187540486,0.293799639,0.325044096,-0.59387809,-0.118926518,-0.530941606,-0.508463562,-0.086430341,-0.471577644,0.645833313,-0.176265016,0.071080707,-0.629296899,-0.372006267,-0.736430943,0.0439414904,-0.702938974,0.00840037502,0.0737899765,-0.0140796257,0.263647646,-0.223145917,0.23780483,0.347709507,0.310456723,0.227857947,-0.56304574,-0.112804063,-0.707519531,-0.0182260051,-0.133256257,0.130305737,-0.256897211,0.227475762,-0.292041957,0.392827451,-0.263602406,0.0130737908,0.437994301,0.444413215,0.110611707,0.399584293,-0.849609375,0.10983336,-0.46683374,0.20415993,-0.00811658613,-0.0273736808,0.0247696582,0.72265625,-0.281129152,-0.15815796,-0.0249335468,0.410962164,-0.0664253756,-0.377609491,-0.0121176746,0.0647681952,-0.0440298915,-0.185544521,0.044441469,-0.497444302,0.116191849,0.135278314,-0.123912461,0.0163301621,0.678385437,0.316353709,-0.342677802,1.296875,-0.000489328988,-0.139635369,0.615309477,0.0293056183,0.300987363,0.0854295641,-0.18309693,-0.240181878,0.0841623992,0.558510661,-0.688565314,0.24565129,0.283142507,-0.435403436,-0.152813494,-0.107187182,0.106932893,-0.023466941,0.163601935,0.890625,0.23331067,-0.219174743,-0.657907188,-0.374864727,-0.0307065323,-0.177248493,0.896763384,0.0656650215,-0.447066993,0.45875901,0.311224729,0.244172186,-0.0269839484,0.16832149,-0.533854187,-0.145528719,0.536358178,-0.572153389,-0.244138584,-0.88671875,-0.00626166817,-0.0191480853,-0.28221488,-0.0611806735,0.478350103,0.384574145,-1.8359375,0.146042958,-0.193388283,-0.626201928,0.0940130427,0.158693865,0.00808764063,0.0246890504,0.291049302,0.271551222,-0.221235797,0.204555884,0.123059466,-0.418165863,-0.362376273,-0.365222514,-0.368217885,-0.0595765226,0.208005264,-0.118442006,0.102534764,-0.387453794,0.962890625,0.111306369,0.0397716388,-0.114729427,-0.294802696,0.642045438,-0.362131268,0.676367164,0.2578457,-0.0749487132,-0.105157621,0.289047539,0.349199474,-0.768229187,-0.0438216291,-0.439498901,-0.153271869,-0.163561344,0.0494303368,0.362340271,-0.56645906,-0.0270816665,0.123069108,0.327965081,0.000349097943,0.140173152,0.0847245157,0.45789063,0.235807091,-0.374155849,-0.244163945,-0.0851690322,-0.674479187,0.352120548,-0.016897995,0.403139025,0.0613907948,-0.360231638,0.0998276249,0.0119745918,-0.0807585418,0.814453125,-0.020332301,0.0181303993,-0.0681195855,-0.720170438,0.347793043,-0.171913505,-0.413109988,-0.32717374,-0.12081708,0.345730335,-0.277208239,0.136249542,-0.306713462,-0.0734743178,-0.99609375,0.1757662,0.305709481,-0.409135789,-0.0766672418,0.0862188488,-0.612680316,-0.30062598,-0.162094533,-0.1435505,-0.481276929,-0.382556945,-0.221615255,0.422013104,-0.503504694,-0.56215018,-0.225967288,-0.327090979,-0.00969264656,-0.0874263942,-0.420838892,-0.017372461,-0.395465344,0.716145813,0.451674104,-0.00909787044,0.0337778553,-0.453966588,2.03125,0.126902401,-0.587094903,-0.124600723,0.0346318185,-0.0309515446,0.407454193,0.0834897533,-0.000375137548,0.372104585,0.188454479,0.149400041,-0.447610289,-0.740234375,-0.0463967323,1.8046875,0.368078291,0.0180599056,-0.24164772,0.00172921584,0.0869270787,0.219045922,0.0773510709,-0.259710282,-0.519301474,0.133284196,0.102774575,0.432528406,0.472206444},{-0.265813023,0.201088443,0.215871096,0.888671875,-0.10958612,2.28125,-0.246650532,-0.149436399,0.123320371,0.165000007,-0.210930511,0.7578125,-0.0908271745,0.373019964,-0.102050148,0.293893427,0.155718803,0.481313586,0.165448189,0.561848938,0.168977797,-0.210948557,-0.0308351535,0.249452963,-0.359298199,-0.186013043,-0.0345754214,0.0964431241,0.0146226529,-0.0617538393,-0.318283409,0.093248412,0.350607246,0.464694768,-0.124216355,-0.129882812,-0.0732303336,0.070071049,0.683203101,0.515392482,-0.375540227,0.451988995,0.198277459,-0.168465108,0.127001062,-0.289991438,0.0746407732,0.186597973,0.0429619923,-0.136316136,-2.25,-0.56193465,-0.0429563373,-0.751953125,0.125748605,0.144009769,-0.392460942,0.7109375,-0.155773878,0.500217021,-0.307571054,0.56804049,0.0649396628,0.0283040684,0.517526746,-0.0110604707,0.193270832,-0.265766352,-0.150907546,-0.152384028,-0.0707895979,-0.162629128,-0.134697676,0.000884516921,-0.213363543,-0.118149929,0.0905913711,-1.5546875,0.575672209,-0.481643677,0.071796827,-0.696397543,-0.136214256,0.0462300777,0.044949647,-0.616753459,0.223533779,-0.211110219,0.0224125944,-0.303463548,0.290081531,-0.543588817,-0.368036687,0.0563206971,1.21875,0.0624184087,0.157635152,-0.570719421,-0.24882029,0.0569032207,-0.283145487,-0.731119812,-0.431477875,-0.528725982,0.496453524,0.0264233295,0.314446151,-0.625710249,0.0854466632,0.160179347,0.371946037,-0.115711883,0.320273042,0.300792605,0.672460914,-0.915624976,-0.0157709308,-0.13962929,-0.152334705,0.300933719,-0.0864543095,-0.0326359794,-0.759672642,0.568004251,-0.136690915,0.335059702,0.478450507,0.300764799,-0.402640611,0.424750447,0.0971652195,-0.0564358048,-0.328927279,-0.0226835757,-0.799479187,-0.425537109,-0.0746469498,-0.00209986675,0.369121581,0.169900835,0.355475187,0.096255444,0.0189371351,0.090767175,-0.277370512,0.0146827139,0.595540345,-0.281060994,-0.275194943,0.202072561,0.372011244,-0.326136887,0.0984207988,0.859375,-0.0861846283,-0.550908625,-0.290981531,-0.349707454,-0.248846784,-0.486984491,0.0778888464,-0.203742892,-0.398328245,0.198650524,-0.295022488,0.0905186981,-0.128745362,-0.507504106,-0.139132455,0.135676622,-0.195810914,-0.128431678,-0.121277638,-0.332923412,0.145530686,0.173831493,-0.508877814,-0.880580366,-0.602502882,-0.00635950454,0.0971838012,0.136284932,0.0495651215,0.285034716,-0.503588319,0.0526241995,0.316195607,-0.0918243006,-0.359328866,-0.320386678,-0.295913577,0.112025313,-0.242175072,0.368400663,0.0526184887,-0.368069559,-0.0291908346,-0.288899273,-0.379897535,-0.404085726,-0.25377956,0.148951605,-0.35340184,0.193290696,-0.655949533,0.35919562,-0.318321824,-0.270543337,0.215327755,0.261544585,-0.498745263,-0.0527368672,-0.077337794,0.141076267,-0.00290143071,0.115011394,-1.015625,-0.046875231,0.254749745,0.223150045,-0.175228119,0.452524036,0.133789062,-0.282174319,-0.775213063,-0.0314368121,-0.364925414,-0.229465857,0.34281677,-0.714062512,-0.174240455,-0.146506801,0.0378404744,-0.473813653,0.0884050056,-0.251479447,0.214761332,-0.0202770066,0.267553598,-0.613511026,0.183134317,0.185061246,-0.0316601172,-0.309697539,-0.334952384,0.461087734,-0.833984375,0.0184707642,0.501178622,-2.375,0.248417094,0.172270909,-0.222677797,-0.132233799,0.183573529,0.0470507927,0.179779589,0.244645044,-0.269539773,-0.312545031,0.327119559,-0.665865362,-0.0448997281,0.368997723,-0.7578125,0.362342745,0.181221545,-0.374928981,-0.505580366,-0.128469393,0.78125,0.0375436544,0.495149732,0.0280458722,-0.290899754,-0.0964562371,0.0125237992,0.106901467,0.284992039,-0.153804898,-0.185531333,0.042560447,-2.046875,-0.757254481,-0.145935178,-0.679121375,-0.156750187,0.26076737,-0.4559398,-0.571986616,-0.167508304,0.384699643,0.0256811827,0.0252506845,-0.603881836,-1.7265625,-0.170834571,-0.0159662478,-0.031709034,1.734375},{-0.316386223,-1.390625,-0.371017158,0.318310559,-0.0521206781,-0.367119759,-0.0722128823,-0.271516442,-0.0133378729,-0.00760623021,0.090083994,-0.811848938,-0.169399738,-0.0078093349,0.14846614,0.125760198,0.580042601,-0.20834586,-0.88671875,0.38278681,-0.0086067738,-0.154294789,0.56229794,-0.147049949,-0.269491196,-0.913504481,-0.284126967,-0.259714752,0.258671254,-0.253878981,-0.0104918489,-0.0338394567,0.0535411909,-0.0380691141,-0.21436511,0.318618059,0.108333834,0.610449195,0.178733617,0.122755207,-0.0399069749,0.0903229564,-0.234944329,0.450526357,-0.292920381,0.408203125,-0.131373212,0.133300051,-0.312506706,0.74609375,-0.977864563,1.02929688,-0.724184811,-0.47068435,0.433618158,0.380674452,0.513330102,0.412827432,-0.00735859759,-0.233348399,-0.0869452432,0.188494533,-0.794084847,-0.436519086,-0.24418959,-0.365144849,0.0829651058,-0.357522041,0.352483392,-0.607766569,0.116956212,-0.499126852,-0.0189882107,-0.759765625,-0.264565408,-0.436537087,0.0533828177,0.180677682,0.277284861,-0.346837938,0.194834068,-0.422670722,0.0910916626,-0.0103376331,-0.0985971987,0.660000026,0.0399019606,1.05078125,0.343742073,0.0700545236,0.00286559877,-0.33685571,0.0320406146,-0.164578766,-0.358264208,-0.655245543,0.411953598,-0.179714128,-0.211482272,-0.0964027271,0.113706626,0.136258364,0.158578217,-0.00067452417,0.269649923,0.368781239,0.809027791,0.175218239,0.0321715698,-0.0644326583,-0.0615506768,-0.354434729,0.76171875,0.534562886,0.15773356,-0.334960938,0.607219815,0.14259088,-0.0756547004,0.029922558,0.225137949,0.0633933023,-0.207520336,-0.260770261,2.171875,0.0788546577,0.237868622,0.186968833,0.263671875,-0.106264114,-0.351479888,0.406098694,-0.105708636,0.644241869,-0.405131906,-0.0768943354,0.332833141,-0.209535971,0.615885437,0.00365374284,0.0910215676,0.148955613,-0.143549114,-0.355542183,0.0357429199,-0.286137313,0.203008652,0.0424279049,-0.117434159,0.0650100857,-0.0669201836,-0.564499259,0.671386719,-0.0552429631,-0.377024144,-0.416973472,-0.0698079839,-0.195717514,-0.201150179,-0.132876948,0.0310611706,0.95703125,0.448301017,0.020610448,0.456208885,0.205560058,0.0724778473,-0.387656629,0.526486278,-0.530539751,-0.0807797313,1.59375,0.261631101,-0.0688235387,-0.586336076,-0.0270064101,-0.208534539,-0.386698604,-0.104009047,0.610595703,-0.217760324,0.270649195,-0.351400852,0.495145082,-0.23823382,-0.0282783043,-0.300902933,0.0812328681,0.484529197,0.143539146,0.48317489,-0.376844019,-0.142575204,-0.0197854899,0.572063565,0.175783351,-0.156708464,0.747395813,0.0103269676,0.465087891,0.0372237302,0.106675401,-0.591375589,0.106278569,0.200614139,-0.227098614,-0.448907375,-0.071776025,-0.187017351,-0.63671875,0.224138916,-0.102259152,-0.132318243,0.242809162,-0.101833701,0.0706091896,0.419579566,0.184117705,0.422310829,-0.0622398183,-0.0348884352,-0.352459878,-0.000361215789,0.715624988,0.206496328,-0.210997567,0.279266536,-0.344044447,-0.253838032,-0.071200937,0.31368345,0.431584001,-0.422968745,0.111587033,0.181107387,-0.111313075,-0.218249932,0.0935502499,-0.0825259984,0.255767822,-0.0876775905,-0.372938365,0.200201795,-0.183120415,-0.224541396,-0.298634052,-0.0343248472,0.260735333,-0.179208234,-0.265677571,0.102965519,-0.114312492,0.0523360558,0.197233722,-0.0165809989,0.193999022,-0.263716727,0.139212474,-0.0527535453,0.16065383,-0.791015625,-0.252934456,-0.00240829424,-0.728064895,0.384736687,-0.202559799,-0.0185845364,-0.999565959,-0.267522961,-0.422633111,-0.859933019,0.336984903,-0.179673418,0.106172107,0.148950651,0.643437505,0.239761353,-0.601688504,-0.114733137,0.201142117,0.161018968,-0.620768249,-0.226085752,-0.110810839,0.0830273405,0.096985884,0.569915235,0.985351562,0.0552459955,0.458259672,-0.485257655,-0.0547623858,-0.65234375,-0.0164791774,-0.192859367,0.83203125,-0.595635772,-0.36110124,-0.0864815265,0.633007824},{-0.099368982,0.162132442,-0.266645759,0.227055699,-0.301663309,-0.041309014,-0.0113988882,0.00745112821,0.217760503,0.848144531,0.627232134,-0.485269189,0.144040316,-0.204586983,0.0182163641,-0.462890625,0.411153018,0.163587183,0.115241379,-0.771661937,0.324127406,-0.275323629,-0.500041544,0.0308384076,0.75,-0.572578132,0.113569729,0.279154718,0.189923063,-0.134213284,-0.441335231,0.450846344,0.536013722,0.713541687,-0.269471437,-0.359340727,0.395296156,-0.326225638,0.0827521682,-0.267721176,0.302557468,-0.16696313,-0.354588479,-0.243177325,-0.159653634,-0.574041188,0.446338713,-0.0746807456,-0.196745932,-0.369918704,0.431028455,0.250617176,-0.33592537,0.307613552,-0.31646204,0.0096932007,-0.245539412,-0.206519425,-0.885416687,-0.45645681,-0.224066839,0.443040788,0.498263896,0.783854187,-0.0194812678,-0.221265182,0.31530568,-0.226519689,0.231424719,-0.28894043,0.55472368,0.140626043,-0.383647412,-0.115042008,-0.513702869,0.422889113,0.195758015,0.109647602,0.20649536,0.535215437,-0.331959248,0.543185771,-0.0196600724,0.155270457,-0.0333143137,0.0195045602,0.0707762912,0.19290857,0.213895351,0.251847655,0.166485131,0.140147313,-0.144045919,0.417994022,0.160118625,0.103971146,-0.153829604,0.0688782707,0.00132920186,-0.87109375,-0.225529939,-0.0764386877,0.0242384225,-0.366102427,0.0062537007,0.191800907,0.0223688707,0.432455212,-0.256873906,-0.13627252,-0.232928455,0.302648515,0.00488865376,-0.30157575,0.741102457,0.357286245,0.0581337437,0.798177063,0.0771609172,0.175826713,0.148466706,-0.681640625,-0.143124029,0.234828219,-0.0866871029,0.460180163,-0.476488322,0.407313228,-0.594554245,0.325965941,0.165057957,0.014122461,-0.603338063,0.160732999,-0.0280991588,0.278345793,0.120096587,-0.0994001105,0.181260318,-0.0839912444,-0.502278626,-0.371979982,-0.46583426,-0.658052862,1.390625,-0.194680482,0.286179304,0.102328099,-0.157675803,-0.459540576,-0.240411937,-0.00633998914,-0.11055401,-0.117643707,0.630078137,0.134288698,0.153768793,0.457795531,0.113751546,-0.0898256972,-0.123303026,0.475585938,-0.172773287,-0.310405612,0.254973084,-0.464908868,0.196275964,0.833984375,-0.0492909364,-0.0726944208,-0.409315944,-0.422253013,-0.0455326587,0.222223252,-0.722956717,0.378348202,0.0165307131,0.349499345,0.673828125,0.41615513,-0.617542624,0.0725575313,-0.0156201571,-0.436567426,0.0212926883,-0.0829424784,-0.183444262,0.70818013,0.330915958,0.506080151,0.0445628278,-0.0512255952,-0.191376969,-0.16751191,0.0166897383,0.48133558,-0.30859375,0.449140638,-0.23976998,-1.75,0.503726363,0.00799854659,0.175272524,-0.326165557,-0.285225123,-0.671177447,0.788762033,0.00946988724,-0.366919428,-0.326244444,-0.0370848887,0.281170279,-0.562349737,0.847222209,-0.0478513241,0.455590099,-0.527402937,0.319411993,-0.0252176709,0.158760071,-0.29698351,0.175275549,-0.0529425777,0.159799471,-0.199252933,-0.743489563,-0.00400800677,0.103721969,-0.0822046921,0.231932178,0.239169836,0.0079604527,-0.464722931,0.553579748,0.236698642,-0.743832231,-0.0742149204,-0.202609003,0.215303481,0.0712860227,0.402268887,-0.171370462,-0.130887836,-0.535193443,0.0567668714,0.13723281,0.537326396,0.0844340399,-0.790039062,0.270588368,0.426737458,0.0483499244,0.209024653,1.765625,0.140621915,0.109149277,-0.0671481118,-0.114450961,0.160038695,0.020462947,0.415943295,-0.433477134,0.201160342,-0.291985303,0.0734686106,0.0536286868,-0.0573892295,-0.167482942,0.269580811,-0.171851143,-0.0248391572,0.262695312,-0.119392321,0.542503715,-0.406404197,0.366124988,-0.447912663,0.30757767,-0.17821376,0.255755514,0.265577376,0.399359822,-0.302820355,-0.0422241986,0.131350458,-0.493914336,-0.244086727,-0.115121491,0.269458115,0.269513905,-0.373126417,-0.267674983,-0.100571178,0.559601843,0.643110812,0.244190067,0.745028436,-0.0759279728,0.253935456,-0.214468941},{-0.0188235361,-0.0496458076,0.286160707,0.26871714,-0.181631476,-0.513327181,-0.39251247,-0.0830502361,-0.209065035,0.60546875,-0.771484375,-0.0431819893,0.0299879257,0.137136713,-0.02548673,0.0920368806,0.502948105,0.262669712,0.345728338,-0.04151842,-0.0471097678,-0.430641711,-0.331072599,-0.330828547,0.245057836,0.274513721,0.0117558194,0.00700206216,0.077879332,-1.8125,0.109928325,0.635677099,0.117493823,0.211358652,0.112220399,-0.9140625,0.0194171797,-0.0346600004,-0.0849666446,-0.0293087009,-0.0883911774,-0.485282362,0.157710329,-0.107342802,0.6484375,-0.238772094,-0.310551554,0.00666527171,-0.0900558978,0.143035442,0.0289749838,-0.360445589,-0.146962926,1.75,0.658052862,0.298760116,0.031294059,-0.278356194,-0.314132065,0.02731991,-0.280174553,0.248321071,-0.286175847,-0.147922918,-0.0555405319,0.193906501,-0.0927945822,0.185019657,0.167354673,-0.388424933,0.2948713,0.663085938,0.277430862,-0.222166881,-0.116690412,-0.306637734,0.145990744,-0.355441034,-0.629166663,-0.0781627893,-0.00468900753,0.405967146,-0.195748463,0.622656226,0.0964177698,0.297909021,-0.0812946782,0.00160780991,-0.134227842,-0.794270813,-0.133849576,-0.282221407,-0.0487422459,0.343697488,-0.164629489,-0.328181028,1.5390625,-0.238278642,0.163635477,-0.219231799,-0.10226886,0.0927499533,-0.045747593,-0.110102877,0.0993688926,-0.891276062,0.518889129,0.283271432,0.12282674,0.276330471,-0.431448191,-0.283245593,-0.318146795,0.207535148,-0.0547666736,-0.251967251,0.401589125,0.0554151721,0.16214636,-0.772321403,-0.411957473,-0.00867454242,-0.0079030199,-0.114946447,-0.0328227356,0.23539719,0.00226288661,0.638338387,-0.154300019,-0.0213435851,-0.440336674,-0.153792486,0.166983739,-0.618626654,-0.162183017,-0.160152137,-0.447033584,-0.379633337,0.236347586,0.123691641,-0.0594449118,-0.297812253,0.2354552,0.329071462,0.1996696,0.109597012,0.0109454812,-0.00478747999,0.0106720608,0.0197493602,0.0456593484,-0.0718241706,-0.226524264,0.0522510819,-0.244996592,-0.252850592,-0.245178878,0.235765085,-0.155275494,0.657752395,-0.285184711,0.0489651747,0.163606018,0.627155185,0.185034692,0.151910394,0.017558163,0.421912551,-0.220746443,-0.119564101,0.426923633,-0.0676265508,0.615364611,0.752790153,-0.199627623,-0.474590212,-0.2840648,-0.0262129083,0.204116613,-0.471561044,0.157197654,-0.390450329,-0.201168433,-0.0646784529,0.0625685677,-0.139659643,0.0233038832,0.00203964207,0.0924655944,0.334985495,-1.01269531,0.131258741,-0.44933036,-0.0822474584,-0.486380905,0.581845224,-0.616644979,-0.376787037,-0.314551771,-0.222246513,-0.168863565,0.331843436,0.020453902,0.222557262,0.0868528783,0.0151542295,0.00180128985,-0.0387003981,-0.229509994,-0.171847701,-0.0749299973,-0.700892866,-0.414106876,-0.436706543,-0.130350724,-0.533721328,0.108435944,-0.409050047,-0.315382779,0.488372087,-0.133281693,-0.276247531,0.0410176404,-0.526587725,0.0830277726,0.00498090684,0.744977653,0.357060671,-0.17290315,0.135705218,-0.0178395621,-0.638834655,0.522949219,-0.546562493,0.300670773,0.0457323529,0.146461383,0.224858716,0.10451743,0.492759973,0.672104776,0.32095626,0.0937088355,-0.0119179925,-0.411940217,0.0891581625,-0.285128802,0.550616205,0.302643776,-0.438444227,0.333065271,-0.0602996275,-0.787946403,-0.0690635294,-0.156672478,0.498098284,1.96875,-0.0693240613,-0.211236954,0.570822001,0.563217461,0.0231991261,0.14993687,0.76171875,-0.455864459,0.641474187,0.10130325,0.305565178,-0.640438974,0.467680424,-0.0582020879,-0.396178007,0.283121496,0.296839803,-0.673611104,0.186982512,0.0589864776,0.196180746,-0.547926664,0.970703125,-0.00745734666,-0.115673572,0.539615571,0.167522922,0.330040574,-0.163058236,0.223143518,0.126222447,-0.0566883907,0.137655139,0.0571447536,0.0417285077,-0.258782953,0.283174813,-0.454050153,0.0552469343,0.277390867,-0.147005603,0.149425,0.28518185},{0.08712139,-0.09446108,0.07521284,-0.01304804,-0.09811891,0.2338974,0.26548728,0.34738687,-0.5081522,0.4747002,0.3351027,0.01199945,-0.13280168,0.47547263,-0.06396779,-0.09615283,0.00501367,0.12358519,0.58342636,0.17277065,0.5265151,-0.60632104,0.04187896,0.3182641,-0.03529212,-0.3436615,0.24231508,-0.1273728,0.44439828,-0.33198786,-0.11162394,0.04086364,-0.03094134,0.08837479,-0.01550416,0.09494312,-0.21425155,-0.10280402,0.04332132,0.3134249,0.20898674,0.20903642,-0.07106467,-0.0075248,-0.06667949,-0.35148498,0.22170739,0.25069532,0.12833227,-0.26941454,-0.34561917,0.18455268,-0.29484168,0.1371767,-0.17576675,0.22213507,0.1655263,0.21436983,0.0057884,-0.5780599,-0.16738333,1.125,0.12090262,0.01491926,0.20995693,0.35536596,0.6196733,-0.6669922,-0.68359375,0.39350706,0.3574384,0.0907841,0.21140634,-0.15334904,0.08068848,0.16016985,-0.2502206,0.30544442,-0.05664566,0.00755852,-0.1208223,-0.14695899,-0.70814735,-0.35454705,0.00159263,-0.03476781,-0.11205429,-0.29190966,-0.25772724,-0.03217638,-0.22169808,-0.21585621,-0.25289154,0.15669115,0.7138672,-0.15086356,0.25197482,0.44823095,0.25014976,0.27992818,0.01334921,-0.40347272,-0.10278554,0.31447294,-0.2813649,0.06518464,-0.95703125,0.13768467,-0.6459961,-0.36233342,0.65460527,0.0071759,0.08882948,1.5546875,-0.42953727,0.30468068,-0.10787109,0.23008266,-0.22122698,0.08815528,-0.23097979,0.01847428,0.26472902,-0.04190474,0.37495118,-0.46310547,-0.2969117,-0.2445743,0.11764209,0.11526889,0.6944444,0.22355947,0.08547002,-0.30460653,0.25204223,0.33496094,0.23106109,0.2676481,-0.02841804,-0.24358597,-0.14793663,1.03125,-0.10325122,0.25786427,-0.24981135,0.5940552,-0.6877298,-0.04968459,-0.5908203,-0.9609375,0.5583857,-0.8761489,-0.43646204,0.6598395,0.09352732,-0.07255246,-0.31144932,0.01308751,0.45821846,-0.0390862,-0.42704666,0.15482783,-0.24461903,-0.23541316,-0.04310323,-0.21629341,-0.36037725,-1.0234375,0.03835671,0.23584762,-0.2616228,-0.828125,0.52387154,0.47688046,0.02724861,-0.6643319,0.26367188,-0.45309338,-0.27140823,-0.14262864,-0.1724096,-0.64635414,0.09574282,-1.0351562,-0.01803255,0.20548405,-0.06394427,0.24961823,-0.03852399,0.09548564,-0.09329598,-0.01083021,0.12844853,0.06259023,-0.12115157,0.33586845,0.32988936,-0.88411456,-0.03091103,0.00707584,-0.35242304,0.42180765,0.12482301,-0.01765342,0.01145611,0.09450273,-0.71875,-0.2382148,-1.5234375,-0.08443861,0.10198349,-0.31545857,0.03539132,0.53453946,-0.4726734,0.34678912,-0.20115227,0.08570785,0.18553725,-0.25395116,0.04266015,-0.60898435,-0.13043053,-0.1659356,0.15866879,0.15280718,-0.1962315,-0.43945312,-0.77994794,0.05931769,0.39811644,0.16363041,0.3301002,0.45994544,-0.28727528,0.41400447,0.33770227,-0.56608075,0.77126735,-0.17865337,-0.42038894,-0.11892015,0.2636454,-0.11571491,-0.11309499,-0.03144571,0.01104173,-0.4091092,-0.47439435,-0.13037989,-0.4277591,-0.27346417,0.3711336,0.04320379,-0.55505955,-0.04303008,0.26170513,-0.3877556,-0.03252289,0.2030927,0.1042167,0.17124933,0.28703204,0.48842278,-0.12460013,0.08471707,-0.61408025,-0.10036209,-0.39742053,-0.5779018,0.04906613,-0.06210224,-0.08813122,-0.3152073,0.10398087,-0.82942706,-0.07960507,0.15327469,0.1899186,-0.0208047,0.1010734,-0.0636171,0.2035626,0.05011223,0.01614241,-0.12841299,-0.07155485,0.08712468,0.42052284,0.85658485,-0.05743373,-0.72415864,-0.05332429,-0.38012362,0.00949325,-0.03994855,-0.14792572,-0.5793208,-0.2598059,-0.33882546},{0.67169744,-0.17086154,-0.03427389,-0.6058239,-0.36716056,0.19390307,0.5595313,0.27361506,0.54674476,0.3848103,0.01162405,0.04222874,-0.40804037,0.18898278,0.24595685,0.16499695,0.8125,0.2144085,0.04768979,-0.17524959,0.11591052,-0.35333994,0.7942116,-0.25767255,-0.07078369,0.03647124,0.17619152,-0.05147221,0.34093657,-0.01281098,0.2363321,0.13426046,-0.56065536,-0.08809585,-0.16153954,0.13323629,-0.34247777,0.4773393,0.16304894,-0.12509798,0.57410216,-0.40234375,0.5623834,0.06336652,0.2191248,-1.6640625,0.6507813,-0.11858573,0.18460234,-0.01125045,-0.23776923,-0.23084776,0.14748442,0.23535763,-0.23337777,-0.31824964,-0.50382966,-0.78196025,-0.0414946,-0.7951389,-0.01503785,-0.27254197,0.177573,0.43777344,-0.09692946,0.09300596,0.24250512,-0.01504943,0.80772567,0.46768925,0.24205337,-0.04247772,-0.89453125,0.13573077,0.68359375,-0.79111844,0.2427265,0.6905692,0.01623576,0.32233587,-0.82477677,0.13471785,0.8046875,0.361207,0.16892032,0.12652984,-0.50322807,-0.11834154,-0.58447266,0.4351313,-0.45012796,-0.12690286,0.27834153,-0.01146286,0.01352447,-0.20301218,-0.34455007,-0.00878899,-0.6953125,-0.16267861,-0.03335188,-0.26850227,0.09813281,0.1056565,-1.6953125,-0.21347775,-0.03622216,-0.1856841,-0.07931884,-0.6119792,0.0864436,-0.5059375,0.35943395,-0.40396443,-0.01542569,-0.09376902,0.09154381,-0.20071147,0.52336043,-0.43835938,0.03474826,-0.4272536,0.19325921,-0.21242476,-0.58857995,-0.24412623,-0.02352958,-0.6031605,-0.03673592,-0.08471069,-0.7956731,-0.10329878,0.04958357,-0.03868958,0.4953342,0.0081309,-0.2162821,-0.14494137,0.27446643,-0.38846073,0.04286046,0.6961806,-0.18403454,-0.12839988,0.73046875,0.07177636,-0.18555193,-0.13764662,-0.85435265,-0.17387408,-0.11859339,-0.1083778,-0.36028644,-0.36399332,0.25975007,-0.02961407,0.20952885,0.11081257,0.22707403,-0.6360677,0.6574219,0.27923915,0.22215013,-0.39379194,-0.8304688,0.04715801,0.11057065,0.03202365,0.10911368,0.3418747,-0.04038889,-0.57608694,0.15730886,0.02439276,-0.42066357,0.05700176,0.05749388,0.01115966,-0.33003387,-0.27730784,-0.5076214,-0.5174753,-0.48053497,-0.23534709,0.3319205,0.39064026,-0.5310968,-0.12939602,-0.518129,-0.08270361,0.30167943,-0.09644869,-0.01298758,0.1431126,0.17823985,-0.22124985,-0.38277152,0.1552691,-0.67026657,0.21233675,0.07033238,-0.1635725,-0.28028902,-0.22803545,0.76633525,-0.07642455,-0.07716071,-0.31254554,0.0211996,0.03870894,0.00266728,0.22070806,-0.09693181,-0.09837214,0.1015363,-0.27349547,-0.1572183,0.41409478,-0.38777253,0.29986888,-0.0959322,0.5931424,-0.20208123,0.31837323,-0.02314991,-0.36420572,0.0457323,0.13964358,-0.04225874,0.3125,0.10598621,1.6640625,0.18068677,0.2254905,0.13039115,-0.33292937,0.5841532,0.1465228,0.0256958,0.10690474,-0.308563,-0.4762123,0.05676806,-0.23875888,-0.18504931,0.03577926,-0.18796875,0.04054232,0.14646056,-0.17424937,-0.5917969,-0.53465074,0.7285156,0.55878335,0.24840666,-0.46748087,0.0184709,-0.00446305,-0.08590391,0.0961292,-0.23834819,-0.33084962,-0.24415077,0.13432592,-0.06315697,-0.28329998,0.02488673,0.09302043,0.09430269,-0.91015625,0.42111546,0.15381603,0.43234536,-0.12651663,0.37206134,-0.30958632,-0.14598376,-0.00313246,-0.13233426,0.49777326,0.05845552,0.589614,-0.15519734,0.08420672,-0.04245885,0.020857,-0.48547536,0.45658946,-0.01769254,-0.08758771,-0.23180352,0.77734375,-0.38863906,0.21046022,-0.3298586,-0.11469667,-0.10497894,0.41584006,-0.19299357,0.32820854},{0.255881578,0.241649002,0.167912692,-0.191743359,-0.498286039,0.105050817,0.134760663,-0.196838573,-0.354333222,0.059100505,-0.155739874,-0.341796875,-0.0415252522,0.0818285123,0.388788491,0.250511289,-0.519124329,0.0421925187,-0.0881312415,-0.0771189034,0.0457000062,-0.0759420618,0.225086331,-0.0862292945,0.397379547,0.0820231885,-0.771093726,0.166011661,0.137761652,-0.275473207,-0.651772082,-0.34771648,-0.312612057,-0.70703125,-0.348530442,0.0222023241,-0.115649804,0.220709398,-0.164648443,-0.171374813,-0.273512632,-0.214329258,0.0343848057,-0.441982567,0.0139999306,-0.0983935818,-0.186519578,-0.202558205,0.306708843,-0.0773784369,0.0890459046,-0.175307587,-0.546484351,0.404154301,0.165077031,0.0725026578,-0.046074301,-0.0832213461,-0.475275218,-0.0111123174,0.030369563,0.303819448,0.0305367671,-0.300788939,-0.172395706,-0.501255572,-0.285088688,0.0265369043,-0.47626847,0.0557482354,0.424797118,0.0572181791,-0.524676085,-0.0397622436,0.0189782903,0.0981553122,-0.156665251,-0.090854004,0.112509802,-0.0333620682,0.0353814922,-0.125805467,-0.230018035,-0.582812488,0.693104625,0.457865387,0.770182312,0.149870619,0.273341954,0.0144840898,-0.177195713,-0.766555071,-0.00811377168,-0.10014309,0.312579721,0.149946585,-0.103056014,-0.114240974,0.431774914,-0.583736777,0.293085545,0.310505986,0.0661664754,0.024170449,0.370016158,0.482352108,-0.751562476,0.0346601419,0.177145585,-0.430781811,-0.155683443,0.0747469291,-0.518267453,-0.0571468845,-0.104650266,0.0879037678,-0.182122096,-0.896484375,0.647705078,0.0513357744,0.120583147,0.395580351,0.722005188,0.0902843922,-0.205432087,-0.116231136,-0.179191083,0.230476141,-0.105217278,-0.185392678,-0.259820521,0.134724483,0.121109605,-0.101337597,0.333927751,0.196281597,-0.935546875,-0.261586696,-0.846191406,0.446260989,-0.91015625,0.326916724,0.72265625,-0.201064587,0.326288193,-0.615685105,-0.324162513,-1.671875,-0.357351363,0.224121094,0.466701865,-0.680897892,-0.290083587,0.167483136,-0.31047821,0.679387033,0.349652529,-0.183140203,-0.585602701,0.337787062,-0.72265625,0.13231948,-0.118179448,-0.0947046429,-0.0720016062,-0.308582872,0.0339291841,-0.0954082236,0.211841241,-0.390120268,-0.153347999,0.413104028,0.9375,-0.577615499,-0.159135461,0.239315629,0.418815762,-0.319386899,-0.215777248,0.193913862,-0.121374369,-0.175729036,0.357249528,-0.302747995,-0.13818793,0.739062488,-0.248820886,0.169875666,0.231512725,0.410279334,-0.533227861,0.265785426,0.0247421879,0.0291641746,0.10910552,-0.15227747,-0.499105573,0.0695642307,0.0471346937,-0.0562878214,0.884232938,-0.509175122,0.73828125,-0.790798604,0.337756991,-0.497343749,-0.120755866,-0.152429596,-0.301809222,0.0719816983,0.152838767,0.0527371801,-0.808314741,-0.53733474,-0.217324898,-0.136174664,-0.426805079,0.128356159,0.0958880335,-0.311458319,-0.000546592637,0.281226456,0.252989471,0.212336317,0.530845881,0.80078125,0.184134007,0.240140215,0.202658817,0.535451055,-0.236295849,0.236807108,0.8046875,0.0710465312,-0.544505656,0.201662228,-0.0225022249,-0.0739457905,-0.312136173,-0.24162887,-0.219610125,-0.0793603361,0.0134289423,0.139147013,-0.567639828,0.235267863,0.366785377,-0.285169184,-0.421875,-0.0521070287,-0.128983214,-0.343503118,0.00576349348,-0.203498781,0.302464277,-0.334919989,-0.0473694392,0.364127606,-0.134820297,-0.177706644,0.16796875,0.0966770574,0.80078125,0.0888825357,-0.662202358,-0.634314895,-0.152847379,-0.568261743,0.191362411,-0.00381483044,-0.119398564,-0.154423609,-0.0419821963,0.193854183,0.0305215549,0.245050609,0.329062492,-0.175758168,-0.406979173,0.297866076,-0.437054813,-0.150892049,-0.390351564,-0.202137008,0.183146164,-0.973632812,-0.715144217,-0.207898721,-0.771093726,0.545016706,0.178693295,-0.356638581,-0.328021437,-0.503645837,0.128424659,0.395872563,-0.361338556,0.15820989,0.0409711897,0.0310777109},{0.126240671,-0.00837090984,0.378024638,0.0321279168,0.401148289,-0.0108572599,0.174287155,0.458050281,0.0541949309,-0.220093817,-0.486870646,0.563476562,-0.331088364,0.232388735,0.215304077,-0.149391741,-0.282240331,0.44329533,-0.513340235,-0.41796875,0.00830431841,0.70851934,0.10397587,0.1850501,0.143023267,-0.105237633,0.31719467,-0.619290888,0.622968733,-0.213854373,0.297116131,0.173799768,-0.146951154,6.53258321e-05,0.156717151,-0.250594795,0.283114016,-0.170390949,-0.375,0.0296822973,0.36328125,0.146447167,0.6911695,0.0223696753,0.262686819,-0.137199551,-0.0915449113,-0.462032437,0.500071645,0.414986759,-0.0759410262,0.0794042945,-0.0888165683,-0.0422118865,-0.0479814708,-0.208892033,0.0512500592,-0.166954309,0.249334902,-0.098901242,0.246087387,-0.107574739,-0.100143954,0.319424719,-0.6640625,0.489335924,-0.451214015,-0.0915545896,-0.250561476,-0.0981033221,0.0759418905,0.49764964,0.732031226,0.0944147781,-0.638764858,-2.453125,-0.20750609,-0.243602738,0.0440841429,-0.177812099,-0.428829581,-0.184133917,0.473446786,-0.0959596559,0.217322379,0.373991013,-0.279269129,-0.620535731,0.728422642,0.967447937,0.0408763066,0.300610363,-0.101548851,0.21436438,-0.0586735457,-0.487304688,0.519260526,-0.0825209767,0.0983798578,0.182088971,0.0476913713,-0.307570696,0.343660921,0.68359375,-0.499038935,-0.0560423806,0.161651462,1.6875,0.984375,-0.178717077,-0.786576688,-0.149885431,-0.0628788769,-0.187917888,-0.68359375,0.030555319,0.231821895,0.642144084,-0.294130743,-0.0414106473,-0.631076396,-0.3250916,-0.373002678,-0.00840064697,0.452919394,-0.334787339,0.174340814,-0.183644667,-0.877343774,-0.41917935,-0.206496611,-0.48062712,-0.226108104,0.473531783,0.189990133,-0.896484375,-0.133274719,0.78125,0.454175264,-0.187496454,-0.111928582,-0.813058019,-0.610617876,0.409146339,-0.155257598,0.187978938,-0.139635995,0.443218172,-0.0193409398,-0.0778479055,0.25774771,0.548995554,0.373310804,0.12884663,0.388768733,-0.327946961,-0.452047408,0.0420289002,0.173906669,0.449414074,-0.0803314671,0.185576171,0.0953819901,-0.0151288323,0.00062616996,0.255828172,-0.2079615,-0.2978926,0.161116228,0.180636063,0.0700342432,-0.232421875,-0.496459961,-0.261707813,0.415370405,-0.39942956,0.146448001,0.530649066,0.416035771,-0.190960422,0.842447937,0.033833392,0.168931752,-0.110113993,-0.0785894096,0.320280492,-0.827148438,0.393554688,-0.0101876352,-0.0333279148,0.389594615,-0.20851177,0.17532669,0.109852724,0.276370108,0.0392289385,0.0180958267,-0.219278425,0.251577139,0.0668871105,0.119559899,0.0402566828,0.0765802413,0.279296875,-0.14600575,-0.281298429,0.474178553,0.484375,-0.8515625,0.524652779,-0.808919251,0.446180552,0.168362677,0.0663686544,-0.579701185,-0.181600973,-0.0822773576,-0.0827328637,0.0154870413,0.0744893327,0.206042573,0.115196429,0.483489275,0.267507315,0.0465177037,-0.0776537061,-0.257618576,-0.852864563,0.116175242,0.0423606373,-0.452807039,-0.486628592,0.00154453039,-0.327354252,0.399253845,-0.166503102,-0.24252075,0.0265688933,0.0543507449,-0.0220590085,0.501191556,-0.289020211,0.322300196,0.0251037516,-0.245442703,-0.189943299,-0.690972209,0.207955688,-0.108168766,0.564749062,0.775923312,0.0903169215,-0.325133502,0.249233961,0.0866696686,-0.813368082,0.0553085171,0.660937488,0.00171667174,-0.114970781,-0.171479791,0.342532843,-0.296740294,-0.00158103334,0.17033489,0.493003368,0.557226539,0.163601801,0.0602352656,0.121336088,-0.155787304,-0.240790531,-0.332955569,-0.0334256999,-0.234672993,0.0993999988,-0.132815063,0.494140625,0.490991712,0.382831991,-0.974609375,-0.0203167722,0.423917919,-0.25973779,0.286026508,0.195241109,-0.302767754,0.714192688,0.0666324943,-0.209060714,0.331939042,0.270369977,-0.18601805,-0.136268541,0.180698007,0.00150802697,-0.437255859,-0.435816258,0.689453125,-0.13514407},{-0.178672269,-0.237202898,-0.102636442,-0.124338731,0.18492122,0.560000002,-0.0545285195,-0.768821001,0.69900763,-0.448757112,-0.382627159,-0.218285426,-0.272470534,-0.135808393,-0.167480469,0.617534697,0.192892164,0.669791639,0.28215912,-0.333018631,0.0814916715,0.32521224,0.312347621,-0.00177985523,0.0712965131,0.357390374,-0.505756557,0.513408959,-0.0700136349,0.72265625,-0.19482182,0.00251095672,0.0966422185,-0.404496789,0.0309920441,-0.316394359,0.586032748,-0.416053921,0.519335926,0.140093863,0.00917812716,0.553276896,0.293910444,0.803906262,-0.465789467,0.0270636361,-0.475876659,-0.00140703062,-0.0764154047,0.244138137,0.138678819,-0.0231276769,0.236814156,0.544824243,-0.0803184211,-0.128895342,0.00741405413,-0.258823812,0.107661463,0.0864052474,-0.437220991,0.0299641322,-0.0141170854,-0.551628828,0.371629655,-0.305643857,-0.12693648,-0.141117394,-0.0625613555,0.0895619094,-0.126634359,0.105187871,0.16253221,0.409260333,-0.829947889,-0.180670947,-0.307492375,0.0166265927,-0.095934689,0.600151896,0.430472583,-0.0405983664,-0.285282254,0.55347079,-0.53103888,0.239210606,-0.132804394,0.328179151,0.167486504,0.186982885,-0.371107966,0.0577697754,-0.578176379,0.546429574,-0.0201949906,0.201728314,0.10301958,-0.296821654,-0.449955791,-0.0759267211,-0.0595001727,0.651953101,-0.233374849,-0.187480316,-0.0554849543,0.249655485,0.0800556093,0.226081163,-0.0349411555,0.8671875,0.271512687,0.3876369,0.0130231781,-0.26840657,0.0344990604,0.157711148,-0.352662981,-0.265486419,0.230422869,0.228469774,1.5234375,-0.160136417,-0.10672617,-0.16604346,-0.410144418,-0.0583652742,0.0693039596,0.133252889,0.0820916072,0.158713415,-0.0891256556,-0.33203125,0.246734962,0.236799166,-0.534446001,-0.0244834572,0.0854126588,-0.0314811654,-0.218733564,0.333910823,0.0176114701,-0.448179841,0.0616755001,-0.247183383,-0.616815448,0.304502189,-0.531453431,0.684244812,-0.0775912702,-0.615319312,0.345783323,0.174915791,-0.0478608944,-0.659179688,-0.530290544,-0.128911763,0.0956327543,0.84765625,0.696614563,-0.264626443,0.196810663,0.333931595,0.275295258,0.672991097,-0.536458313,-0.366193652,1.59375,0.132753357,-0.456231654,0.471340001,-0.509621739,0.128953159,-0.239253268,0.05801256,0.192354798,-0.156708255,-0.145086274,-0.0876227915,-0.807391822,0.313434094,-1.00390625,-0.287269562,-0.721875012,-0.146946877,-0.367916673,0.261710197,-0.0934509188,0.124801032,0.0146212475,1.671875,0.147900656,-0.822265625,0.0903265327,0.304681212,0.445061386,-0.00895248447,0.0605286695,-0.532518268,0.451280385,0.141063452,0.345820159,-0.253835738,-0.0169609915,-0.181648776,-0.0977035835,0.214338541,0.120817453,-0.806107938,-0.487525195,0.0136673842,-0.591851115,0.098127529,-0.332015276,0.440222979,-0.337918699,-0.0695891902,-0.0422659293,-0.12131542,0.726841509,0.842773438,0.583984375,0.0793275312,0.0839988291,0.0452408157,-0.279146641,0.197721779,-0.325016499,-0.156248733,-0.132282227,0.197276995,0.645647347,-0.336050838,0.122096509,0.0357683003,-0.145522594,-0.0378589258,-0.716974437,0.391626596,-0.6875,-0.430382669,0.0151534351,0.447048604,-0.320452005,0.198812485,0.24022074,0.859375,0.242495894,-0.00308856182,0.0207921956,0.18856138,0.159157991,0.302609116,0.101004764,0.30076164,0.98046875,-0.443386018,0.100089438,-0.148465097,0.633928597,-0.293925047,0.207999542,0.0606510304,0.346467853,0.0510359034,0.253823429,0.923549116,0.303492427,-0.0579724535,0.594270825,-0.214349508,0.12941663,0.081060499,-0.0746851936,0.677849293,0.285126716,-0.375133455,-0.322134525,-0.0372286886,-0.084973447,0.0969579965,0.0201256368,0.110546783,0.856119812,0.318368822,0.414884865,-0.302647948,-0.383567333,0.201128021,-0.0979108512,-0.0208365135,-0.71484375,-0.0984223261,0.583007812,0.44144243,-0.145991459,0.0922666639,0.339766324,-0.82421875,-0.325011045,0.102765135},{-0.0633874908,0.294878036,-0.513447762,0.0764125958,-0.0153266564,-0.122263625,0.217783988,-0.417046666,0.262744814,0.247512922,-0.093969658,-0.0807691142,0.0748882443,0.669327438,-0.205101207,0.349476099,0.129421994,-0.139059663,-0.123928204,-0.253834873,0.218851551,0.083233133,-0.226525038,0.214824855,-0.0961953253,0.194340214,-0.428382158,0.841796875,-0.205074191,0.229174018,0.696289062,-0.51937288,0.151845947,0.0418707281,0.698242188,-0.170882165,0.155805767,0.0291110426,-0.233414069,-0.377792239,0.254913151,0.269568443,0.245114714,0.298807502,-0.826497376,0.244902104,-0.380754888,0.0893749446,0.719140649,-0.514146984,0.0152552621,-0.451850057,-0.840820312,-0.244530141,0.354674429,0.7265625,-0.320196241,-0.0269685853,-0.241271257,0.133340135,-0.125537515,0.367259294,-0.188990831,-0.360367835,0.455823392,-0.0478224121,-0.241196334,0.476227671,-0.0993529037,0.20897533,-0.50525105,-0.102775253,-0.0825270787,0.241269097,-0.385718018,-0.101822846,0.315363437,-0.0291401949,0.364314228,0.259789944,-0.235283598,0.248871714,0.128924191,-0.224599898,-0.229928911,-0.329233885,-0.0458917506,-0.0659523904,0.591389954,-0.223169968,0.215784267,-0.16553697,0.219983861,0.849158645,-0.469418168,0.709960938,0.0179435015,0.116415396,0.0702782124,0.119880505,0.16059649,-0.501736104,0.867968738,0.150863215,0.949776769,-0.52706188,0.405142814,-0.242218435,-0.123400822,0.00495484378,0.0405359156,0.228486523,0.54328984,0.166482374,0.928906262,-0.708203137,-0.147519201,0.163526714,0.436629325,0.554448366,0.100117311,0.17818971,0.354660571,-0.0841873512,0.195806637,0.206174657,0.263557732,0.020394776,0.201235294,0.0808198601,-0.045021221,0.703993082,0.0118923066,0.104441851,0.0934910253,0.0714957416,0.300616443,0.317324072,-0.281216025,0.604941726,0.259572893,0.0190556645,0.165916756,0.207088172,0.0832719207,0.371035337,0.225122929,0.302812189,-0.204101562,0.670572937,0.903076172,0.124172688,-0.158652946,-0.277094424,1.546875,0.00910636503,0.0558795035,0.312276781,-0.410060972,0.177247494,0.36799854,-0.0135642029,0.482804298,0.113972008,-0.188979238,0.578125,0.426780254,-0.0614938028,-0.00661845924,0.0797450393,0.000842482725,0.76171875,-0.0817871094,0.153313473,-0.8984375,-0.0691204295,0.527564883,-0.119831629,0.0976333022,-0.440518469,0.0165415667,-0.140136719,0.9375,0.310535103,0.106001295,0.00884268712,0.079607904,0.0364632048,0.0479603224,0.63447839,-0.0571109839,-0.158250317,0.230387866,0.576422274,-0.224691212,-0.109372653,-0.111097261,0.228919655,-0.187373459,-0.173822194,-0.594019413,0.203168586,-0.0552636907,0.720377624,-0.308607548,-0.333946943,-0.0410387143,0.135249704,-0.396614164,0.875,-0.273440361,-0.0156825241,0.445048571,-0.263715565,0.187495053,-0.031850379,-0.307555497,-0.329000801,0.13715142,0.0427284278,0.460704297,-0.38104248,-0.605972767,0.128434598,0.265616953,-0.598177075,0.0724678934,-0.212438554,0.4381392,0.381659567,-0.277323902,0.0800540149,-0.0566470101,-0.165083051,-0.207471371,0.0111740166,-0.168486923,-0.451896995,0.174761072,0.0357945189,-0.0427368656,-0.0238531027,0.659307063,-0.0313889198,-0.0484449007,-0.108625948,-0.229492188,0.66527158,-0.0730151236,-0.0851998851,0.0322395861,0.232546613,0.298808724,0.141551688,0.0744267926,-0.00634626439,0.569372118,0.0915843993,0.357319832,-0.946614563,0.250056982,0.223711848,-0.548924208,0.221115306,0.503363729,-0.0451337285,-0.225077391,-0.246074662,-0.0778688043,0.183140442,0.183477059,0.280167639,0.0528530255,-0.243261725,0.442521185,-0.544973254,-0.55925262,-0.283118993,-0.229088679,-0.436046511,0.6640625,-0.189810529,-0.110588767,-0.0735016018,-0.0114055295,-0.265674233,0.0614720397,-0.326097459,0.312340945,0.0437979326,-0.118893974,0.0686504319,0.0783562884,0.35655269,-0.811523438,-0.83203125,-0.0630735606,0.0849324241,-0.668457031,0.220717281},{0.268594444,0.341775715,-0.00581409084,0.421998739,-0.254935086,-0.0774030834,0.023829598,0.712890625,0.0175951999,0.206493869,-0.269521892,0.223613784,-0.226594061,0.550942659,-0.347593248,0.861718774,0.366173863,0.393545955,-0.161145374,-0.497584671,0.401168168,0.186490968,-0.660757184,-0.0360285491,0.202688724,-0.169003621,-0.205523431,-0.18600975,-0.421922624,-0.0467089862,-0.156771585,-0.421875,-0.101760775,0.195336103,0.0652376339,-0.0949873403,0.229501098,0.285012394,0.000281586021,0.732910156,0.465762854,-0.656131625,-0.00450803433,-0.652099609,0.0577741191,-0.0124253817,-0.0545516089,-0.0454041138,-0.0394113064,0.0210078582,-0.0447104089,0.680468738,0.00191816699,-0.644097209,0.21429126,0.482521176,0.230463967,-0.568449497,-0.379661143,-0.130863175,0.489243239,0.140135169,-0.457534641,-0.212360308,0.791406274,0.137705922,-0.189029574,0.292836249,0.102798812,0.580307901,-0.671354175,0.312574834,0.450868815,-0.499121755,-0.194397926,0.29008019,-0.575733423,-0.523707926,0.152353346,-0.113960564,0.30266431,-0.0144466804,-0.00820041262,0.0998351574,0.51953125,-0.0842254683,-0.339819938,0.117476672,-0.187953487,-0.139152154,-0.0934562311,-0.00401269784,0.360968918,-0.724609375,-0.26164791,0.293894917,0.347567767,-0.363327116,0.0361316055,-0.388810396,0.453031987,-0.185492769,-0.0227786247,0.235509679,0.107202508,0.701822937,-0.111798868,-0.0899513811,0.338856906,0.483816952,-0.0271590278,0.133747712,-0.0296105463,0.067149125,0.556423604,-0.131387249,-0.296846986,0.00614290964,0.35358721,-0.077624917,0.00247787684,-0.26963076,-0.0476019271,-0.680555582,-0.266818583,-0.587296188,-0.543015242,-0.0747366697,-0.251813173,-0.234886914,0.0529408529,-0.242140889,0.590169251,0.00357188215,-0.079828985,-0.329847306,0.418988526,0.404229522,-0.125357687,0.877604187,-0.195306033,0.437988281,-0.780560672,0.68210566,-0.053197898,-0.330062509,-0.388384372,-0.395507812,0.125063837,-0.023928646,0.0756917521,0.0678658634,1.4921875,0.301817596,-0.0290532783,0.297870517,0.725852251,6.04096167e-05,-0.317413926,0.131751642,0.0141347386,-0.379130036,-0.0221585464,0.254953116,0.0567548983,0.00839698408,0.322146595,0.105477005,0.372227371,-0.0390372686,0.10272865,0.339691162,-0.354569703,0.368255794,-0.0396419428,0.119370401,0.110356532,-0.0498418063,0.0496693999,0.076708287,-0.290927023,0.874023438,-0.0413942859,-0.0143431006,-0.749348938,-0.673930943,0.64992559,-0.170851544,0.185991824,0.280243993,-0.150894925,0.174730495,0.550480783,-0.125759929,0.369009167,0.107447967,0.165008768,0.686523438,-0.135182917,0.6796875,-0.00649942691,-0.7890625,-0.864583313,0.151348293,-0.452759922,-0.416944325,0.384619147,0.0709849894,0.994140625,-1.0703125,-0.120551802,-0.220182925,-0.0377892256,0.0344632603,-0.831054688,0.0294091459,0.0448300205,-0.560000002,0.470908731,-0.189951375,-0.368159592,0.338867188,-0.0837555602,0.0937407166,-0.0991781279,-0.0389240645,-0.142044008,-0.573772311,0.0815800205,0.086180687,0.177737445,0.951171875,-0.367958993,-0.00102908828,-0.0803064853,0.252122432,0.0447814576,-0.183679372,0.147436991,0.141533703,-0.137108117,-0.829427063,0.155269831,-0.373813719,0.6875,-0.0603079945,-0.15138109,-0.640136719,-0.00949211512,0.245141119,-0.889843762,-0.0289653931,0.24558185,0.71989888,0.444048703,-0.168420389,-0.114227012,0.278215677,0.122349463,-0.0566620156,-0.406379133,0.535907447,-0.364329278,0.285942137,-0.253954947,0.148914978,-0.84765625,0.213798851,-0.329976588,-0.7265625,0.0869140625,0.94921875,0.107419685,0.368189275,0.0651387647,0.265388817,-0.242694601,0.362290919,0.378605783,0.433500737,-0.0270155892,0.0815248862,0.0840293691,-0.16353789,-0.321847111,0.140611589,0.15084298,0.335971057,-0.202593029,-0.395805031,0.658511519,0.124888241,-0.0805686563,0.169888631,-0.0348884538,-0.317438304,0.511615932,-0.291047722,-0.42681393,0.392536402},{-0.22313118,0.390519112,0.0341964066,0.0031913314,0.247406095,0.310524434,-0.309484661,0.239692912,1.9609375,-0.163574219,0.445266008,-0.105735563,0.10474503,-0.0724755749,0.0651630908,0.392511457,-0.0312177073,0.544802308,0.457305908,-0.0117833531,-0.0888798311,0.013571742,0.257734388,-0.514246345,-0.00152093789,-0.12535964,0.038384296,-0.430557907,0.0621747673,-0.543002427,-0.348745048,0.407151431,-0.0710872114,0.119952805,-0.0813270137,-0.0362606309,-0.467809618,0.831250012,-0.300740272,-0.787760437,-0.501453459,-0.123718753,0.465800226,0.0947117507,0.110617958,0.100854993,-0.595140338,-0.173373193,0.0820201784,-0.0408158749,-0.840820312,-0.762109399,0.58610028,0.0905454084,0.0324849598,-0.164058372,0.119690046,-0.440475851,-0.0728210881,-0.0544400588,0.647764027,0.782366097,0.244753569,-0.0162752885,0.297866911,0.0293202344,-0.895833313,-0.319270819,-0.30461359,-0.0273448564,-0.00389317563,-0.324167788,0.0727689713,0.564603388,0.199781433,0.597956717,-0.0328127705,-0.134223565,-0.27438274,0.167038918,0.240042314,0.298749745,0.290995687,-0.152825356,-0.355597407,-0.155828208,-0.0137973502,0.264614969,-0.404989928,0.23045519,0.140119329,0.387842476,0.0513621867,-0.240214676,0.508488595,-0.403943062,0.0625649244,0.173338398,-0.0490923785,-0.124351166,0.361354709,0.217295811,0.197776496,0.473040968,0.204523161,-0.751065314,0.116450258,0.0732764229,0.0720537454,-0.563802063,-0.0979001299,0.693080366,-0.138195112,0.877232134,0.23046656,0.20644778,0.536821187,-0.0307033435,0.0929866061,0.360192388,0.508064508,0.105267733,0.0461171009,0.135763928,0.882324219,-0.868164062,-1.3515625,-0.00924940221,-0.000229335128,-0.551432312,0.207064927,0.0680601224,0.438631922,0.290024281,-0.240661472,0.626674116,-0.271495819,0.514020622,-0.0842344314,0.0480144098,0.296767324,-0.115002573,0.359072417,-0.148877844,0.123177625,0.743938565,-0.923177063,0.168876946,-0.491616786,-0.244104654,-0.175811768,0.0257103071,0.228392124,-0.224600837,-0.195235938,0.0447946154,-0.869357646,-0.765136719,-0.282140046,-0.180693552,0.118818007,0.0920423418,-0.525146484,-0.145066142,-0.147945195,-0.180139497,0.244143382,0.181582481,0.291015625,-0.00163388671,0.226619348,-0.0331987292,-0.298828125,-0.00735476846,-0.519316256,0.0856746808,-0.0189017858,-0.177766651,0.141582459,-1.01660156,0.34962514,-0.0754528865,0.270512342,0.0656908453,-0.0452732891,-0.0989064351,0.228983715,-0.285161197,-0.233437866,-0.610677063,0.201658785,1.015625,-0.259742379,-0.273422986,-0.180522799,0.750849187,0.25591746,0.0110649122,-0.4933303,-0.651718736,-0.0443178304,0.277371705,-0.169891611,-0.0935503542,-0.377125859,-0.13379547,0.0417468883,-0.437458724,0.132787168,-0.126236901,0.42477417,-0.177247882,0.28026107,-0.332951397,0.276524067,-0.0988458097,0.0141218472,0.506802261,1.140625,-0.0771555528,0.264521062,-0.0671584234,-0.365197003,-0.108834401,-0.0557990782,0.407118052,-0.104965352,-0.0678928941,-0.321039021,-0.312434405,-0.10087385,-0.0201983433,0.203157559,-0.742745519,-1.109375,0.0598335266,0.270541489,0.244179949,0.311567813,0.674218774,0.226026058,-0.227974951,0.484673947,0.4296875,0.000986726373,0.631076396,-0.533278227,-0.221191406,0.38203609,0.0653971359,-0.233365327,0.9140625,0.164556175,0.490792423,0.538702726,-0.136246473,-0.524871469,0.482153803,-0.446264029,-0.137708321,-0.107159548,-0.104251437,0.0149986818,-0.0440590754,-0.306528568,-0.0105522079,0.118940875,0.02956344,0.136155784,-0.0869147107,0.0191947892,0.68344909,0.338842154,-0.193376869,-0.00691639306,0.145983994,-0.708214939,0.0310081672,0.130818009,0.75390625,0.329031795,0.457725137,-0.0153818838,0.244700417,-0.263534427,-0.594178736,0.865625024,-0.258818477,0.924479187,0.0939293876,0.0415931083,0.557596385,-0.583524823,-0.2201695,0.334051073,-0.190460294,-0.200186402,0.214948952,0.109857418,0.130866885},{-0.475760311,0.223624006,0.481534094,0.62450397,0.0702828616,0.0621943735,1.04427087,0.0447761379,0.16209735,-0.301729083,0.0497162677,-0.248805478,0.511621118,0.273416996,-0.542912126,-0.304454297,-0.185560748,0.000711503671,-0.299804688,0.224067256,1.0,0.0541843884,0.363172323,0.386579245,-0.159621105,-0.392502695,-0.395454556,0.433469743,-0.29777354,-0.431783855,0.166918024,-0.200714767,-0.447945744,0.0749471262,-0.66015625,-0.215317711,-0.0380780138,0.177672818,-0.131332427,0.289105535,0.146973193,0.192789927,-0.153302327,0.127030626,-0.59375,-0.0761710331,-0.197181851,0.774999976,0.233437136,0.287067264,-0.196281463,-0.145444676,-0.489129752,-0.361328125,0.271441579,0.18014136,-0.156211779,0.283735782,0.388786763,0.231453478,-1.0234375,-0.0214661341,-0.125091687,0.120565593,0.159682468,0.81640625,-0.0535928942,0.13965334,0.0664124861,0.325932384,-0.29800415,-0.14017944,-0.262565494,-0.352668166,-0.443257987,0.00907543208,-0.0622049831,-0.172332942,0.0800934732,-0.899218738,-0.55250001,0.11175064,0.162613645,0.0620989129,0.322357625,0.144095927,0.439598888,0.701250017,-0.0746925846,-0.651367188,-0.0415086783,0.185506746,0.626953125,-0.289077997,-1.5546875,-0.0442274176,-0.454440355,-1.22265625,-0.166584447,0.456201166,-0.375982553,-0.134291738,-0.314267695,-0.219195098,-0.180667594,-0.383005887,-0.501793683,-0.00934517942,0.45782426,0.111248747,0.00592574151,0.497502953,0.0469973311,-0.580439806,0.395644724,-0.00422036648,-0.449262649,0.0338231139,0.985677063,0.819661438,-0.909179688,0.22758013,-0.296903551,0.176618606,0.0129823424,-0.291009605,-0.126939684,0.373959273,0.83984375,0.466762602,0.0153715145,-0.850000024,0.289006472,0.81640625,-0.118878871,-0.0598159209,0.0168224387,0.0410281271,0.0732413828,0.0793199912,0.178229064,0.0558189191,-0.220120206,-0.0727039352,-0.01610706,-1.4765625,0.118618928,0.262699783,-0.306586653,-0.113007978,0.599322915,-0.215375245,-0.797712028,0.474523723,-0.101273999,0.0884175301,-0.137211129,-0.0673449337,-0.110583767,-0.339867949,0.246966988,-0.0402754247,0.0624474883,-0.601384938,-0.115001008,-0.558859229,0.168078452,-0.262655318,-0.37601769,0.838107646,0.809709847,-0.00871012546,0.0378607586,-0.207909748,-0.263660192,0.786458313,0.841406226,-0.237800568,-0.0247565098,0.0419620387,0.258556545,0.250188202,0.0187641829,-0.19921875,0.387436986,0.170342416,-0.42370829,0.499036133,-0.113045961,0.182149306,-0.226542756,0.43761003,0.416720927,-0.18790561,0.224633321,0.0837585554,-0.221596539,-0.178152651,-0.0654614568,-0.281230748,0.28028214,0.0541127324,0.238638684,-0.121322289,0.444398284,0.16151084,-0.212798923,-0.118886933,0.0930045396,-0.0289032962,0.520353615,0.825781226,-0.50088203,-0.00305463653,-0.0827443376,0.158654392,0.0768959969,-0.0129661914,-0.499517202,-0.470525563,-0.943359375,-0.0908395573,0.370199561,-0.000389203313,0.372040272,-1.6328125,-0.0492048152,0.708984375,0.157674745,-0.146987543,0.143544823,0.0453748517,-0.623641312,-0.112870574,-0.0150458664,0.149888188,0.796223938,-0.14014329,-0.142509714,0.0100365896,0.0416321717,0.038914457,-0.366427302,0.251572698,0.0996465459,0.190449655,0.0683294237,0.979687512,-0.591517866,0.143508762,0.0603804775,0.128432214,0.0380832478,0.0759316161,0.022005612,0.281220168,0.873046875,-0.25060311,0.0253378469,-0.356553018,-0.0700717121,0.717578113,0.218696222,0.166440487,0.718005955,0.245558038,-0.361281782,-0.345779032,0.409619689,0.224642366,0.30662185,-0.00317452173,-0.280246317,-0.149884745,0.131818771,-0.136217818,-0.20314385,-0.671093762,-0.265432507,0.133785799,-0.102729015,0.00845882762,-0.616586566,-0.645733178,0.0292622577,-0.402326375,-0.0429811627,-0.438078701,-0.368791401,0.0108057,0.421069771,0.431477875,0.323467553,-0.74609375,0.221674472,0.187531322,0.0477643013,0.749511719,0.535010219,-1.21484375},{0.501418,-0.75502235,0.6415679,-0.08025981,-1.0859375,0.03440565,0.3906531,-0.47720066,0.31833923,0.09595454,0.21629232,-0.41494378,-0.5557528,-0.42778578,-0.29864854,0.20759533,-0.08889402,-0.4302384,0.6503906,-0.11111801,0.2695399,0.46059424,-0.10895758,0.12509659,0.10454806,-0.00213066,-0.30567557,0.1088684,-0.13133,0.02311888,-0.26656875,-0.09716861,0.28708473,-0.14551933,-0.04884703,0.42216796,-0.15821092,-0.26153743,0.21041101,-0.2996788,0.08597357,-0.04649042,0.38087428,0.3693282,-0.32633907,-0.1772045,0.39912555,0.30587742,-0.2435031,0.08539172,-0.13282694,-0.1066754,0.36824238,-0.4328032,-0.80598956,-0.08417293,0.27942666,0.04531581,0.06201739,-0.38455498,0.3087182,-0.18164618,0.31932425,-0.64828724,-0.39558044,-0.39144948,-0.02217788,-0.46791294,-0.02257254,1.6171875,0.19676588,-0.00312501,0.0105337,-0.20654939,0.4828404,0.04691266,0.11302897,0.07296351,0.9429687,1.1328125,-0.16068605,-0.32019714,-0.09647328,0.8726562,-0.14548063,-0.19674258,0.10890875,0.03646617,-0.01404698,-0.06383023,-0.31640625,-0.19976191,-0.71500653,0.03487659,0.14402705,-0.2420983,-0.22112872,0.32593292,-0.3086766,0.01276554,-0.6924479,0.39617327,-0.6163194,-0.33003068,0.4425177,-0.0939508,-0.34468552,0.50773436,-0.7265625,0.02882136,-0.318339,-0.20166856,0.26968223,0.03237259,0.3466019,0.06108996,0.28515625,-0.7374442,-0.04186898,0.13137564,-0.19380195,0.13669643,-0.24273255,0.52560765,0.55051833,0.00825489,-0.69433594,0.51162684,0.501335,0.5501399,-0.16404049,0.3719943,-1.2109375,0.05704514,0.05433945,0.1228199,-0.5772135,-1.03125,0.14063548,0.70642364,0.21967542,-0.03810157,-0.06667279,0.10520962,-0.37019232,-0.41696715,0.39037865,-0.31734914,-0.41124794,0.15911277,1.9609375,0.4575343,0.54255754,0.36717066,0.16743995,0.3855527,0.26457283,-0.27138826,0.3036965,0.08614719,-0.34194157,0.01165154,0.37296757,-0.0766544,0.14487872,-0.43646163,0.06303177,0.65534854,-0.577567,-0.1758472,0.0362301,0.5122159,-0.01383911,-0.42358994,-0.22945738,-0.27830988,-0.37103847,-0.3573408,-0.16693613,0.24261326,-0.6772461,0.41320685,-0.15134557,-0.80189735,0.8023437,-0.04182221,-0.13042577,-0.4099991,-0.28521752,0.21343465,0.52569443,0.75065106,-0.7276786,-0.392545,-0.71428573,0.28121132,-0.01592491,-0.702288,0.35718715,0.16353537,-0.22699082,-0.00535983,-0.14110564,0.06838176,-0.58141446,-0.1767526,0.094711,-0.19823615,0.24701606,-0.26760536,-0.31833273,-0.45355174,0.2241701,0.27345046,-0.01396751,-0.4842548,-1.828125,-0.19725467,-0.18805037,0.1201453,0.15480062,0.22223447,0.62409854,-0.06816376,0.85253906,0.08645536,0.11792975,0.09204213,0.5479715,1.0507812,0.44899088,-0.10454963,-0.09497889,-0.2169322,0.02162119,0.3341797,0.09520563,-0.00438503,-0.03928439,-0.10232424,0.34277654,0.0135239,-0.01266034,0.06494527,0.3604372,0.3250372,0.19375941,0.44461972,-0.32622698,0.09770922,-0.01424797,-0.4184338,-0.29383042,0.35356048,-0.08519739,0.22399609,-0.17482655,-0.4567776,0.1768301,0.13525984,0.11889805,0.426827,-0.16112924,-0.154779,1.359375,0.02582317,0.16597854,-0.290954,-0.48223066,-0.05551286,-0.28416234,0.39818,-0.23878019,0.4977072,-0.06514219,-0.08248004,0.51289064,-0.34060696,0.01867975,0.04202949,-0.05468997,-0.41015625,0.03031969,-0.02561488,-0.20898983,-0.01223546,0.0276408,-0.5779194,-0.17037061,0.37791654,0.08935012,-0.20903555,0.10714608,0.71310765,0.49674478,0.5236673,-0.24754907,0.02539183,0.01065559,0.07030515},{-0.798177063,0.0312756896,-0.0700306743,0.148456067,0.0437400639,0.760416687,-0.665624976,0.190426707,0.390614986,-0.73046875,-0.05688693,-0.30178991,-0.0499279201,0.0501667224,-0.404336125,-0.396940947,0.0199653246,-0.119697161,0.18749395,-0.591128707,0.427648842,-0.731026769,0.451975286,0.0907904729,-0.220219031,0.483000576,-0.0488045625,-0.107668139,0.0231997836,-0.9140625,-0.129853249,-0.281214952,-0.184081018,0.630504251,0.401280373,-0.388572216,-0.766601562,-0.0654147714,0.378790826,0.470473349,-0.328087807,0.104298562,0.0977102891,0.247922838,-0.107687972,0.0589825846,-0.747596145,0.524299145,-0.134807944,-0.159636676,-0.300696462,0.418065876,0.0926927626,-0.0758885443,-0.19771193,0.238780186,-0.186096296,0.57697612,-0.633246541,0.45323661,-0.351389438,-0.0636207089,-0.335853577,-0.877929688,-0.306484699,0.265650034,-0.160622656,0.0533024855,-0.193407521,0.0026672401,0.0480593108,0.148859948,0.103290528,0.1884211,-1.14453125,-0.630800188,0.361465842,0.379218757,-0.193365768,-0.427887827,0.849609375,-0.221572533,-0.446662456,-0.187945396,-0.40979287,-0.0501841828,0.150380358,0.568278015,0.109070882,-0.077626802,-0.271412522,-0.0335902497,0.0988911986,-0.350498229,0.0247897189,-1.0703125,0.204035848,-0.0465731919,0.322361141,0.0372468531,0.208009958,0.119636178,-0.139621451,0.062301144,-0.117155507,0.10088551,-0.174819306,-0.312331617,0.817708313,-0.0211049318,0.530133903,-0.90625,-0.240701184,-0.150851011,-0.155791357,-0.421941221,-0.0527207255,-0.476544261,-0.0969033092,0.460642695,0.294956535,-0.581718743,-0.188971236,1.3515625,0.340721101,-0.166482598,0.0310054943,-0.138528302,0.160546094,-0.0602707453,0.305506289,0.300720632,0.357228041,-0.394245028,0.358406633,0.0404340774,0.732031226,-0.191834882,0.0386998579,-0.282307953,-0.0162807237,-0.177702799,0.0357498117,-0.0957187414,-0.0879285261,-0.0173055176,-0.0727366582,-0.177520618,0.631347656,-0.684018314,-0.0498776585,-0.260708392,-0.075708285,-0.162567914,0.129397452,-0.0925340131,-0.208443061,-0.449457616,-0.021901954,0.271434724,-0.0513971746,0.760216355,-0.0822903514,-1.25,0.105966657,-0.0949207991,-0.0170486085,-0.566061556,-0.26749289,0.0456973501,0.335169792,0.0378549285,0.389311075,0.121309817,-0.00808140822,0.301772237,0.312451035,-0.210949317,-0.51713711,-0.234789044,-0.0914912149,0.197354883,0.0652438998,0.12249577,0.208981156,-0.374424905,0.408885926,-0.33984375,-0.752604187,0.000216691406,0.737165153,-0.46341911,-0.309558719,0.192845792,-0.277427346,0.0525617525,0.39994213,0.109152265,-0.0995584577,0.32114768,0.170428798,0.838541687,0.29946056,-0.0751762837,0.373767674,0.51908052,-0.404266357,0.18555896,0.46466884,-0.471835613,-0.198160663,0.169324979,0.564236104,-0.0613323711,0.0572447702,0.574321568,0.215747595,0.0450326465,-0.76171875,0.107433178,0.124116443,-0.0264594089,0.312592387,-0.410961479,-0.13418068,0.290945172,0.225142047,0.189485848,-0.708767354,-0.115475625,-0.193343654,-0.408637166,-0.0312819928,-0.0841086507,0.0517566726,-0.0817755982,0.0781078935,-0.28608346,-0.188375533,-0.54934895,0.260723978,0.13527365,-0.208479732,-0.0612555966,-0.306520879,0.0817664042,-0.0595788099,-0.128025547,-0.242132679,-0.0187802743,-0.041610159,0.00940973498,-0.401378959,0.413045883,0.367920905,-0.199655801,-0.0220281668,-0.0400658138,-1.0,-0.0381960198,-0.0407641008,1.1640625,-0.44732064,-0.264683515,-0.107670754,-0.108650208,0.0603405684,-0.435567647,-0.0236277264,0.394301474,-0.106938869,0.02293377,-0.157178283,0.150944665,-0.188914731,-0.203146398,-0.048940409,-0.0705570877,-0.0605382584,-0.716517866,-0.164058626,0.231345564,0.361416906,0.80859375,0.267487079,-0.0625632107,-0.0106714517,0.00555286556,0.477594852,0.181189716,0.220756054,-0.138243139,-0.482379884,-0.00858199503,-0.0101056313,0.686266422,-0.0289464537,0.0491518639,0.196762651,-0.0242136605},{0.01140851,0.06831283,0.0566519,0.76601565,-0.16743067,-0.41193086,-0.02216902,-0.30075935,-0.11547782,0.12789081,0.5684224,0.08182234,0.20792878,-0.6621094,0.09861284,0.00359382,0.10105306,-0.28601494,-0.671317,-0.21335745,-0.23727757,0.26271912,0.18944938,0.2930067,0.4474414,-0.6425305,-0.00846388,0.30273092,-0.6125617,0.25670102,0.06217542,0.28525135,-0.22660424,0.32129827,0.50284696,0.05539276,0.04477625,0.01232028,0.02669146,0.05606952,-0.05295961,-0.15045887,-0.52524036,-0.29492188,-0.39148614,-0.14990146,0.0949757,-0.15131862,-0.6439925,-0.29387972,-0.5874256,-0.0893913,0.29586497,-0.22015256,0.46875,0.5828355,0.09309426,-0.01320871,0.47810444,-0.33196807,-0.07302172,-0.0304034,-0.5550077,-0.05516708,-0.421076,-0.19677797,-0.07889646,0.6979852,-0.796875,-0.21078889,1.015625,0.38186097,-0.1161557,-0.42164207,-0.07252408,0.37441406,-0.85546875,0.4607307,-0.41415778,0.07784121,-0.06147787,0.20414016,0.07833887,0.02965412,-0.08173874,-0.00797646,0.29585227,0.40222645,0.05601682,-0.17812839,-0.558113,-0.50024414,-0.3399221,-0.5338068,-0.08814934,0.46000898,0.6739909,0.08135097,0.6535247,-0.01560007,-0.07207873,-0.6255095,0.0114291,0.27447182,-0.3133625,-0.02840818,-0.23150414,0.10110767,0.23828451,-0.15131022,0.41336685,-0.0043813,0.4062387,-0.08868883,0.1992424,0.12790194,-0.768821,0.48028094,-0.73535156,-0.2099726,0.07255277,0.2715512,0.21587437,-0.29292947,-0.31640625,0.03784932,-0.44130138,-0.45827997,0.35744828,0.0389665,0.15334794,-0.59183675,-0.17716171,-0.25390625,-0.28607318,-0.12363712,0.05180258,0.01048365,0.10084405,0.2128245,0.12792005,-0.1499455,0.0968295,0.04874377,0.5494963,0.15085912,0.01812738,0.05646781,0.33175224,-0.2851525,0.2011597,-0.34755456,0.01647377,0.7566964,0.01004246,-0.5138597,-0.52702045,0.61067706,-0.78764206,-0.0516396,-0.17088616,0.25976154,0.6264261,0.14502257,0.33599597,-0.74609375,-0.0439082,0.29686546,-0.18165202,1.3828125,-1.21875,-0.08080705,-0.7373047,-0.10108447,0.21531875,0.13914359,0.6336263,0.24727048,-0.19675933,-0.05724725,0.05479332,0.56966144,-0.11842627,0.01414708,-0.18167819,0.040646,0.13714959,0.186596,0.80291194,0.782848,-0.36896962,-0.12183827,-0.3919271,-0.0071134,-0.07224517,-0.61328125,-0.27530083,0.29301637,0.13331096,-0.9114583,0.6244992,-0.21140881,0.5309775,0.5297743,0.04882341,0.38922384,0.33877784,-0.02152759,-0.06232801,0.1434863,-0.22897343,0.54117185,-0.16939852,0.3669819,-0.14697148,0.79904515,-0.7135417,-0.26082632,-0.12136518,-0.14448918,-0.5534157,-0.16169286,-0.03820718,0.65839845,0.11885586,0.4973186,-0.46230885,0.0651562,-0.18746974,-0.4502841,0.04953046,-0.19193438,0.2558075,0.6398112,-0.36605558,-0.20112424,0.46785802,0.30562878,-0.00891986,-0.12839174,0.12625106,0.20752914,-0.4375849,-0.9046875,-0.43359375,-0.3250558,-0.02135945,-0.09690844,-0.27924827,0.40910774,0.45980343,-0.18589114,-0.02822935,-0.31912878,-0.25581646,-0.5539651,0.31644225,-0.875,-0.35741413,0.03235728,0.01630611,-0.82421875,0.26552707,0.18704045,-0.37005484,0.58579284,-0.47176054,-0.02993448,-0.14649472,-0.35446113,-0.5190662,0.22848132,0.6501116,-0.40229613,0.61309224,-0.03120016,-0.5235666,0.0601694,0.0995678,-0.05602189,0.13907744,-0.70383525,0.58933145,0.25965744,-0.921875,-0.21142311,-0.11229505,-0.16308771,0.20656297,0.21829192,0.15721516,0.18801026,-0.87946427,0.03614292,-0.4249705,-0.08472394,0.00286892,-0.21482795,-0.14790197,-0.06080074},{0.161128923,0.579900563,-0.4679555,0.191431195,-0.78515625,-0.226564944,-0.154740095,0.552176356,-0.0796618387,-0.0628034323,0.372791111,0.288787425,0.362542659,0.452125192,-0.0886088684,0.0800536498,-0.83203125,0.0680852532,0.231451571,0.0876464844,-0.406831771,-0.49685058,0.00828092732,-0.200608909,-0.110131569,0.155146062,-0.252969205,-0.00362205831,-0.04321016,-0.604070187,0.139673144,0.190910682,0.662388384,-0.199772626,-0.112327643,-0.14445518,0.266596675,-0.503566563,0.3202779,-0.22262162,0.912109375,-0.00125227112,0.343691766,-0.352317721,0.166168034,-0.111314781,0.168573156,-0.261697352,-0.398367196,0.343574226,0.3262918,0.232511356,0.443822831,0.180651605,-0.35527125,0.346591473,-0.072519958,-0.110393092,0.0308780167,0.175306633,-0.205552146,0.223228425,-0.0567958876,0.161091551,-0.0101038972,0.0658865869,-0.421163321,-0.0550699942,0.423502594,0.12984781,0.0199874081,0.0467721522,0.369814724,-0.0796013772,-0.105465971,-0.25390625,-0.0940332562,-2.234375,-0.23926121,-0.225641429,-0.26953125,0.161651447,0.0446452275,-0.0445759594,-0.0467692912,0.17335628,0.0266155414,0.311562002,-0.0576651581,-0.466721743,-0.717773438,-0.054527685,-0.895089269,-0.112000421,-0.129435822,0.0255466625,-0.324891686,-0.454005122,-0.121066816,0.668749988,-0.206085816,0.00858648773,-0.0625380352,-0.271361679,0.0186652727,0.283194155,-0.397276938,0.830859363,-0.162090749,-0.303730011,0.125589445,-0.646289051,-0.185476378,0.333977014,0.113766097,-0.0402699672,-0.243171856,-0.0986506566,0.30456087,-0.149394393,-0.26371786,-1.3984375,0.0790829211,0.393681288,0.298792362,-0.220604151,-0.843191981,0.0550653562,0.0338347815,-0.298772544,-0.0202011354,-0.168366909,-0.690290153,-0.84375,-0.201661065,-0.625,-0.0575747676,0.246472821,-0.413870156,0.248850763,-0.307389945,0.247795075,-0.276310444,-0.269565284,0.153333813,-0.0500070564,0.0788013339,0.0247353502,0.416040361,-0.138171658,0.136712208,0.215345383,0.300004721,0.199660882,0.0524253771,0.235351562,0.00181455363,0.164642707,-0.0747074857,-0.149451733,0.0681086332,-0.190405875,0.515717983,-0.188914672,0.023166677,0.413876474,0.522853792,0.24158375,0.470358461,0.28495878,-0.115976386,0.160609767,0.115613602,0.0961312801,0.298686355,-0.328296065,0.185010821,-0.777944684,-0.0866259784,0.768229187,-0.158691972,0.154294103,-0.092556946,-0.184544399,0.496997058,-0.231997594,0.277452677,-0.632560492,-0.145004973,-0.171758071,0.00147535221,-0.275409222,0.285218,-0.714192688,0.794921875,-0.0434122235,0.227469161,0.0395579264,0.0974637792,0.264803112,-0.0961288735,-0.0849718824,-0.0871719494,-0.0517430715,-0.0466374494,0.00264873612,0.157289058,0.32689479,0.299728096,-0.00650783023,-0.423159599,0.304784358,-0.00890192203,-0.182022214,-0.245993778,0.424164414,-0.015804233,0.639914751,0.338698179,-0.330803782,0.0288326256,0.0180548895,-0.222252086,0.377044678,0.222215667,-0.443080366,0.346786857,0.451636136,-0.232902646,-0.20219554,-0.304703653,0.297995836,0.0524931476,0.369094998,-0.0431339554,-0.127454609,-0.062309213,-0.513454854,-0.0897839963,-0.0693298653,0.427641362,0.307578474,0.41233474,-0.435583055,0.277421027,0.00481969258,0.296070307,0.312506676,0.578835249,-0.55853951,-0.089588441,-0.990234375,0.434636891,-0.424681216,-0.00746249873,-0.287126958,-0.242157847,0.0591651835,0.0854285657,-0.0915208161,-0.298697293,-0.137147948,-0.0270123333,-1.0546875,-0.163532317,0.394415438,-0.0935304612,0.292164534,0.0313609354,-0.26365453,0.232293636,0.313504189,0.171379864,0.00090008002,0.241156042,0.784040153,-0.120834984,-0.100804418,-0.827148438,-0.350276887,-0.0839693844,0.328927308,0.320338964,0.0114128953,0.507123172,-0.114258416,-0.195190623,-0.0492782518,0.135251805,0.680640221,0.12042892,-0.0694334731,0.241202489,-0.175692648,-0.244175509,-0.456820101,0.111736573,-0.00649232324,0.0719814003,-0.802083313},{0.200257212,0.826171875,-0.306769818,-0.376847565,-0.217805415,0.0083199637,-0.11455588,0.0861881971,0.444202155,0.283169687,0.133290082,0.120328128,0.307757825,0.175737813,-0.262707412,-0.0602648966,-0.157779455,-0.663085938,0.13283211,1.0234375,-0.722265601,-0.0346921794,0.117614552,-0.414994001,-0.328168243,-0.228965357,-0.141579419,0.377998322,0.206051037,-0.0878717527,-0.00017395617,-0.15867205,-0.00274229934,-0.0520631708,0.237890631,-0.554750502,0.189529359,0.139656752,0.113282256,-0.090006724,0.11880818,-0.3758789,0.069300957,0.486932665,0.324334383,0.14455381,-0.240180477,0.206951812,0.0234745145,0.0544274636,0.177930325,0.0482253842,-0.242137507,0.119918734,0.111786932,-0.583417356,-0.104004964,0.0798488334,0.314306647,-0.189927459,-0.0469943061,0.177256718,-0.0868971944,0.24990274,-0.19577688,-0.0969548821,0.157083482,0.104221456,0.327125311,0.997070312,0.136206254,-0.450313181,-0.0461472571,0.0311104357,-0.143593043,-0.0500007197,0.0423850864,0.238662288,-0.343930274,-0.0597156063,0.0223657805,-0.381642759,0.376729906,0.24517867,0.0587952994,-0.532725692,0.243617907,0.499299258,0.944010437,0.126953125,0.82421875,-0.266645283,-0.309663713,0.319438726,0.112032443,0.122265801,0.0964275822,0.73046875,-0.016631972,0.318570971,0.000682647573,0.169490799,0.4451859,-0.497864574,0.165498614,0.133822009,0.248452842,-0.39708364,-0.335923463,0.257760942,-0.0696139038,0.168889195,0.234862387,0.255764008,-0.328985691,-0.176231802,-0.552781999,-0.326240808,0.41010803,-0.117941216,-0.039037101,0.467825532,-0.16211383,0.218676835,-0.0208971351,0.0659242421,-0.258822381,0.164032862,-0.539453149,0.064483881,-0.329955041,0.18317838,-0.344489008,-0.162097633,0.0264295377,-0.259572625,0.507401288,-0.0586894527,0.295943618,-0.360370338,0.72265625,-0.343555897,0.444689155,0.186515316,-0.339638978,-0.138678923,-0.0985581055,0.515722632,0.0512752011,0.417176932,0.166527569,-0.46358341,-0.574344754,-0.0419121124,-0.407462299,0.319671184,-0.0295066442,-0.104016803,0.255630493,0.0600562803,-0.234332278,-0.106218718,-0.29676798,0.0328225046,-0.279202253,-0.0524859168,-0.682291687,-0.41217187,-0.0428374894,0.580003023,-0.815696001,0.0683051199,0.00982689857,-0.304679394,0.0991049856,-0.511167884,-0.111306287,-0.14603579,0.0298188776,-0.103268258,-0.0451293699,0.00232494902,-0.245157287,-0.0786193982,0.136707649,0.084951371,-0.323184729,-0.0105767855,-0.0820143893,-0.118206657,0.0732674599,0.0179488454,-0.157661349,0.0807718188,0.133225575,0.453204036,0.303640693,0.415900737,-0.287960529,0.109840974,0.132745504,-0.302741796,-0.330111057,-0.460955411,0.127365291,-0.211471498,-0.169468552,-0.363304228,0.365873128,0.40234375,-0.359450698,-0.141141549,0.0688151568,0.193329871,0.409169197,0.194741592,-0.120142266,0.0191682391,-0.222577989,-0.40044114,0.810546875,0.0407982767,0.144989684,-0.216949061,-0.221625149,0.115742892,0.466773629,-0.0161485597,0.239772245,-0.273398429,0.292821825,0.122879632,0.396968633,0.319258004,0.452210784,-0.388614088,-0.128442764,-1.06640625,-0.569335938,-0.712239563,0.148446307,0.0718287081,-0.252040416,-0.0844663978,0.0712541491,-0.0195776802,-0.119130477,1.5703125,0.239679068,-0.316395879,0.229979187,0.465298861,-0.201272905,-0.56398809,-0.429842502,-0.252879649,0.241093755,0.154842675,0.301565528,-0.0106426328,0.0698149577,-0.0664167255,-0.975260437,-0.124172129,-0.0245810095,0.459899127,-0.294771641,-0.199772894,-0.173808903,0.0854512677,0.632161438,0.19924973,0.196743861,-0.0668761954,0.0871375278,-0.270546407,-0.407197833,0.798437476,-0.0135962982,0.0690798014,-0.319230527,0.166986182,0.135724038,0.447697878,0.0974354967,-0.254854381,0.106451474,0.051823169,0.100793615,0.33206135,-0.217269018,-0.0211645253,0.200954854,-0.266670257,0.0966839343,0.275409788,0.355247647,-0.185061812,-0.0713274032,0.192378327},{-0.298766553,-0.0213740207,-0.152891845,-0.166982323,0.0122681418,0.150401637,0.0717190504,-0.345907986,-0.193743601,-0.579882801,-0.228931338,-0.116703361,-0.121590711,-0.330890626,-0.140689284,0.0347260013,-0.340820312,0.333980948,-0.0324078947,0.0427969061,-0.337768555,-0.108657815,-0.0763939917,-0.734863281,0.346575171,-0.450227499,0.79296875,0.038925752,-1.01367188,-0.175277457,-0.408946157,-0.0697995499,0.236775711,-0.485709637,0.301805347,-0.443467885,0.371195018,-0.214456305,-0.0312450752,0.175254852,0.790364563,-0.0727096051,-0.108435638,-0.217298061,-0.0217933301,-0.819779813,-0.00626786659,-0.377039105,-0.0243788008,0.534882128,0.732812524,0.0126273017,-0.0575867556,-0.0308125522,-0.40320155,0.27932471,0.680664062,-0.343791634,-0.136746585,0.624023438,-0.818750024,-0.239748955,-0.256882727,0.59765625,-0.140095815,-0.171371013,0.417782724,0.238829195,0.0100308582,-0.175733149,0.168949068,0.223121524,0.0429925211,0.0641597509,-0.045489233,-0.212355614,-0.477636725,0.127919748,0.0474748649,0.040682923,0.529375017,0.0569454134,-0.180157632,0.00237780251,0.428992331,-0.242713571,-0.170381919,0.104973726,0.080106698,-0.40252459,-0.0624090731,-0.670396984,0.204065904,0.0944801271,0.393723071,-0.0832516328,-0.0620599166,0.278256983,0.382701337,-0.0461363308,-0.123487532,-0.222153753,-0.174847364,-0.397301376,0.0497906543,0.344948232,-0.27049166,-0.12986058,0.273480028,0.648177087,0.332809657,-0.0308006462,-0.298782557,-0.0262712836,-0.253917336,0.398526281,0.0450665504,0.301924556,0.149365157,0.250156432,-0.495058358,0.550923288,0.15379402,-0.45703125,0.248373851,-0.4296875,-0.0744639635,-0.320219487,-0.304704696,-0.346875012,-0.246583983,0.93359375,-0.0692816079,0.204611078,-0.330055773,-0.213370159,-0.415228307,-0.300843,-0.334121823,-0.012766582,-0.360441983,-0.0957109705,0.626802862,0.534926474,-0.444927782,0.0318317451,0.763020813,-0.0894091055,0.0918341205,-1.4140625,0.299830049,-0.186562747,0.15136078,0.0167612378,0.304522783,-0.351544648,0.547014534,-0.162132621,-0.481838852,-0.296871066,-0.63692987,0.450358063,-0.131392583,0.381547093,-0.316472739,-0.942382812,-0.514322937,-0.0254414063,-0.0722682104,-0.257671297,-0.241607845,-0.112490818,-0.185069606,0.198796794,0.0631688312,0.00342460466,-0.0779266581,-0.276416838,-0.0039043969,-0.573935688,0.687988281,-0.250156552,0.435546875,0.182083458,-0.302684724,-0.922851562,0.0560613684,-0.491401762,-0.047079578,0.357361943,-0.196744785,-0.591737688,-0.203125,0.162119702,0.0669284314,-0.285982579,-0.0568425804,0.192434117,0.577076972,0.0378332585,-0.503575206,0.634895861,-0.243181422,0.0123096388,0.0807827115,-0.109110072,0.0130303809,-0.0835319981,-0.172330096,-0.0988897309,-0.083980225,-0.884765625,-0.250624418,-0.613085926,-0.181580842,-0.00739037525,0.161184207,0.213421538,0.28027916,-0.106732495,-0.188860446,-0.517515123,-0.460791737,0.511575818,0.017152207,0.349458247,-0.586495519,-0.194902271,-0.500552773,-0.184043378,-0.382955402,-0.27333194,0.0864084363,0.184097484,0.643973231,0.611902595,-0.530924499,-0.333922684,0.472641796,-0.341763496,-0.277512759,-0.186978951,0.241591573,0.0134938555,0.159157544,0.411323041,0.1484375,0.151807114,0.0958734229,-0.226042077,0.182186931,-0.690047562,-0.0912745073,0.131299734,0.202652141,-0.705171108,0.366044492,-0.0968919173,-0.516615331,0.24510996,0.151863351,-0.172791258,0.51690203,-0.343726188,0.290896297,0.121543892,-0.184075564,0.000222777933,-0.100058943,0.158358186,-0.226990581,0.506031692,-0.901041687,0.118689768,0.177170932,0.048945874,0.0996203125,0.0952441171,-0.0308538806,0.167033881,-0.277360529,0.0553899445,-0.44690755,0.0983902141,-0.413988084,0.262562603,0.31161052,0.161134586,0.654211938,0.41395548,0.272417217,0.219204113,-0.409121335,-0.0250522513,0.0353592485,-0.156224668,-0.289090723,0.319521666,0.878605783,0.266607493},{-0.0301796906,0.410943806,0.240147874,0.346780479,0.731445312,0.259545207,0.0984457061,-0.138161585,-0.443009883,0.0225124024,-0.659505188,0.169324055,0.164533466,-0.269348502,0.890625,-0.0191556718,0.0662158132,-0.0893011242,0.00088094041,0.282278955,0.366272748,0.149856836,1.8125,0.0193572976,0.185411915,0.921875,-0.345648706,0.233887509,0.502533257,-0.659635425,-0.98828125,0.245510578,0.449286103,0.240727305,-0.400390625,0.181562155,0.653613269,0.000419083197,-0.568181813,-0.0676348135,0.437590539,-0.11085549,-0.0377000496,-0.81640625,-0.173848465,0.187011719,0.020868225,0.409954906,0.542503715,-0.234455347,-0.281271428,-0.0553121492,-0.411241323,-0.161557212,-0.588471293,0.105714664,-0.646484375,-0.0705838203,0.884765625,-0.253900528,-0.156242028,0.00180697232,-0.680245519,0.0888379365,0.0778476745,0.328221053,0.0202497542,-0.107388198,1.1953125,0.281106561,-0.251623124,0.258754313,0.551192462,0.786458313,-0.548989654,-0.957519531,0.269546509,-0.415982902,-0.841796875,-0.272479802,-0.223726287,0.318435073,-0.33675614,-0.436732709,1.515625,0.315388322,-0.239838645,-0.129807696,0.0329216421,0.291117758,0.111109518,0.0683114156,0.154776171,-0.419903785,0.0521145165,0.24967362,-0.0403172709,0.219273657,0.131369099,-0.753515601,0.12836653,-0.899739563,-0.0125814937,-0.0812934414,-0.0905306339,-0.45809108,-0.0854447708,-0.559536636,-0.411634296,0.0574513897,-0.275359869,-0.240205735,0.164032549,0.00707975077,0.141649783,0.26000765,0.12528789,-0.404959232,-0.397927225,-0.346599638,-0.334038466,-0.218745455,-0.542124152,-0.342714697,-0.523654521,0.7109375,0.11250966,-0.0414384939,0.24113825,0.226008013,0.451947778,-0.116254978,0.186981305,0.146019176,-0.131353483,0.151878059,-0.0104109356,0.118146949,-0.530859351,-0.134714335,-0.0917879418,-0.249293357,0.324087441,-0.381716847,0.109368674,0.491254926,0.156750858,-0.492684066,0.167953819,-0.390719235,-0.555664062,-0.402211338,-0.00944718067,-0.00995997619,-0.160600796,-0.0491709039,0.132239163,0.184589997,-0.34375,0.00335011142,-0.197718367,-0.259620935,1.15234375,0.216242686,-0.3671875,0.0313612856,0.0956730023,0.0604303256,-0.0340430513,-1.140625,-0.597956717,0.195364818,0.201113537,-0.0546982326,-0.121823668,-0.0927822068,-0.0435828604,0.0721606985,0.179642424,0.14354074,-0.341702878,0.106342383,0.228627235,0.449310303,-0.46115154,0.99609375,0.189501375,0.315263599,0.170411021,-0.21875,-0.444096923,0.328232765,-0.129434779,-0.0952237695,-0.336856604,-0.0715476722,-0.701923072,0.614990234,0.176793918,-0.377034515,-0.194406435,-0.371072739,0.0612195916,-0.270364016,-0.817382812,0.0620591342,0.220254198,0.0376125313,-0.250600517,0.349651843,0.0668952316,0.36998105,0.34853062,0.316288441,-1.0390625,0.0563100465,0.383817792,-0.1538122,-0.253872395,-0.0346625745,0.068068929,0.16259563,0.209471896,-0.306411892,-0.666100562,-0.290934861,0.677139938,-0.32117638,0.0722865984,-0.0891288742,-0.616406262,-0.0552787483,-0.129420027,-0.0196946878,-0.43314454,0.445081204,0.0124735627,-0.245514438,0.518893003,-0.19533366,0.297875702,-0.267581731,0.0441773683,0.325066328,0.191902682,-0.176233038,0.0427332111,0.125772655,-1.3359375,-0.666992188,0.112523079,0.387509763,-0.0649216771,-0.978515625,-0.179738671,0.129378691,0.202053696,0.0297629349,-0.601181388,0.287910283,-0.196708724,0.136196673,0.10577555,1.4296875,-0.198258922,-0.181032926,-0.268513799,-0.821289062,-0.985677063,0.335109919,-0.144548386,0.114789516,0.0239058174,0.0420175381,0.207501918,0.406885535,0.146806687,-0.13137342,-0.164575994,0.242238149,-0.132853866,-0.287087262,-0.338773161,-0.12374226,0.225112945,0.0824598148,0.269405812,-0.0211098287,0.374872118,-0.329062939,-0.455896705,1.1796875,-0.0922969356,-0.0556711778,0.0627706945,-0.00787152257,-0.783203125,0.114204653,-0.020335516,0.513212323},{0.0300746467,0.279222757,-0.287187248,-0.281348467,0.311182499,-1.1171875,0.324247688,0.123746023,-0.271493733,-0.243132412,-0.322125584,-0.684659064,0.00287704193,-0.185511991,0.127893224,-0.202109382,0.230487645,-0.187449753,-0.0486141518,0.156264737,-0.0323048905,0.103979766,-0.446144968,-0.0993929282,-0.137662023,-0.0713013187,-0.0703184977,-0.240364581,-0.0114461966,0.154400006,-0.0695663542,0.0785671547,-0.642578125,0.372029454,0.0197953563,0.233154297,0.96875,0.382714152,0.150429234,0.253013551,-0.16709365,0.8359375,1.234375,0.190908685,-0.0769521073,-0.0477170199,0.349649519,0.145946071,-0.175820649,0.11309886,-0.519450426,0.283158094,-0.353574157,-0.104028933,-0.000561938854,-0.0217676926,0.396039873,-0.13765645,-0.113538317,-0.0720122457,0.143065438,-0.360943645,-0.00771319959,-0.081049934,0.0529273711,-0.14013575,-0.546565592,0.379002303,0.715871692,0.67578125,-0.0830030069,-0.265488386,0.229999244,-0.915624976,-0.167012259,-0.367227167,0.546875,-0.330099195,-0.556278944,0.128844887,0.116653107,-0.514042735,-0.0673510507,-0.381902963,0.234357908,0.0252246298,-0.743489563,0.232002601,0.231991604,-0.103726566,0.269471854,0.516113281,-0.471464097,0.280215323,-0.210895881,-0.0203878172,-0.6171875,0.0399185903,0.543087125,-0.262720674,0.0810528696,0.030981496,0.0566244647,0.0411493592,0.616562486,-0.170906141,0.199225485,0.400374621,-0.00555433426,-0.258772701,0.171857387,0.0458146594,0.70851934,0.44871977,-0.0627828166,0.595514119,0.160610557,-0.185487688,0.0454337411,-0.0160160623,0.167895138,0.0759200454,-0.662946403,-0.133741617,0.0693291947,0.178634688,-0.100828864,0.121827126,0.416025907,0.264660209,-0.410324782,-0.0484843254,0.224065647,0.115685403,-1.3125,0.463925481,0.248879656,-0.416704953,-0.0122087188,0.109198317,0.0524714217,0.201656312,-0.1347671,0.159686849,0.45220685,0.059031222,-0.0434349142,0.324189007,-0.0478433818,-0.0466077626,-0.29021433,0.359438002,-0.212804079,0.11423441,0.571001828,-0.700195312,-0.108600855,-0.475572556,0.0497069247,0.582563937,-0.515532017,-0.136723325,0.0129506933,0.828125,0.82421875,-0.00305238436,-0.0780844912,-0.31830129,-0.300871342,-0.310632139,-0.211443111,0.101105042,-0.279271036,0.269490063,0.456757128,-0.9375,0.358422905,0.0969638079,0.335055441,-0.343716323,0.113804959,-0.0494538955,0.109870113,1.0234375,-0.260760218,-0.0644676834,0.0929650664,-0.0324011147,-0.0591432787,-0.294084817,0.0341584571,0.0772378594,-0.0784006193,0.7265625,-0.0507376641,0.13481608,0.572516024,-0.0138445171,-0.000864289002,-0.119626991,-0.317247093,-0.054145731,1.0625,-0.168941841,-0.0687808096,-0.0296537913,-0.256901056,-0.539388001,-0.114248864,0.295965493,-0.392452329,-0.114434481,-0.202144012,0.1621214,0.519704878,-0.403413713,-0.255964249,0.38678658,-0.475421339,-0.2138751,-0.0862073973,-0.105754778,-0.115492828,1.046875,0.325166672,1.0703125,0.142625406,0.0313863941,0.0441924706,-0.0550622344,0.215356141,0.348544985,-0.8671875,0.122536041,-0.719184041,0.0882778168,0.200715676,0.079119958,0.0749444589,0.240229771,0.0737163648,0.40852052,-0.0915390849,-0.190892786,0.127966121,-0.525158107,-0.435923785,0.240208939,-0.0395930372,0.336779505,-0.00168984663,0.186907828,0.252869129,-0.251644731,0.688032687,-0.385760099,-0.320417136,-0.181632981,0.212944105,0.415889621,-1.10546875,-0.304945052,-0.319351435,-0.227592394,0.107859224,0.321365207,-0.575182617,0.111840777,-0.219183177,0.0508686602,-0.18790713,-0.437967062,-0.00574209029,0.265581757,0.333075374,0.474249601,0.208466321,-0.372193128,0.0454189442,-0.204978481,-0.3614465,0.673076928,0.0612627678,-0.361406237,-0.166869193,0.327013224,0.552568853,-0.0815657005,-0.232416958,-0.104528926,-0.275321305,0.00787996314,-0.00325647858,0.268474877,0.28606692,-0.241738066,0.169532746,-0.538597465,-0.215300083,0.236829728},{-0.1694902,-0.41625094,-0.2338435,-0.04598497,0.1430819,0.07591096,-0.43865538,-0.05409208,0.8203125,-0.40002057,0.1044725,-0.1620793,0.8251953,0.35446134,-0.8457031,0.46484375,0.30955136,0.09059291,0.3749151,-0.13182585,0.15863903,-0.01585719,0.24071261,0.06516726,-0.5230713,0.21585348,0.15809849,0.06472728,0.90234375,0.0822992,-0.04042137,-0.23818137,0.19685587,0.4315696,-0.20166658,-0.06254126,0.51916957,0.10992359,-0.48256138,0.08544981,-0.21087365,0.04514895,-0.21579786,0.05383815,0.47516215,-0.31243226,-0.14553984,-0.22268732,0.35551718,-0.05330803,0.0702485,0.11424904,-0.16459803,-0.27450162,-0.25284463,-0.4119964,0.33396083,0.33873355,0.1782254,0.35525173,0.05805795,0.10345084,-0.03599621,-0.02825184,0.19281684,-0.6213108,-0.6349927,0.42396167,-0.13438049,0.0284735,0.36910042,-0.19676095,-0.31351396,0.1459808,-0.3388364,0.25110555,0.21135786,-0.62268066,0.16938494,0.21096191,-0.11060087,0.01720028,-0.8802083,0.46317878,-0.21683167,-0.28704202,0.20412393,1.3828125,0.13575102,0.6985677,-0.03104409,0.02535792,0.5307405,0.52517885,-0.6244141,0.3092822,0.29100764,-0.12799944,0.22758418,-0.43755457,0.8828125,0.07567257,0.5238021,-0.14649957,-0.78255206,-0.26067203,0.3368077,0.6207933,-0.06287167,-0.07372412,-0.58413464,0.28311285,-0.78125,0.09491175,0.44805977,0.83147323,0.01794421,-0.06957443,0.01889265,-0.2460548,0.20447838,0.8917411,0.12162449,-0.05380946,0.13332598,-0.36135912,-0.00981706,0.2803881,-0.42134798,0.01103269,-1.2578125,0.5234375,-0.5746094,0.33806938,-0.05652755,-0.50481135,-0.78808594,0.09200517,0.01941167,0.94661456,0.07886485,-0.58848506,-0.3515341,0.29974928,-0.04110511,-0.10697901,-0.21728054,-0.7207031,0.02238252,-0.5406808,0.10739773,-0.12370573,-0.4032552,0.27633986,-0.7054688,-0.26846394,-0.3896707,0.15094312,-0.14359055,-0.211366,0.3045675,0.5036184,0.10745793,-0.04972631,0.23351036,0.13812023,-0.14690244,-0.1303912,-0.10158435,-0.21681574,-0.06570473,-0.2823982,0.4818097,0.5130615,-0.06858661,-0.17971696,0.08178808,-0.52534354,-0.06243179,0.17330152,0.4450914,-0.22114581,0.54267937,0.22948922,0.59925884,-0.18397228,-1.328125,-0.24033643,-0.3921317,0.24505562,-0.27247345,-0.18791331,-0.4757607,-0.05834612,-0.01817504,0.3905971,-0.23878066,-0.05737492,-0.7845052,0.19778237,0.08394417,-0.03380746,-0.20452705,0.410252,-0.01914251,-0.5932253,-0.35234866,0.64341515,-0.0153727,0.24066868,0.09086055,-0.0651892,-0.06546644,-0.02984633,0.14844072,-0.34971493,0.31749877,0.90234375,0.6542969,-0.6207031,-0.45523438,0.47038865,0.11841375,0.25881353,-0.52797717,0.24513252,0.39579284,-0.27246094,-0.39371094,0.17827947,-0.9401042,-0.81640625,-0.25582737,0.04363395,0.24713185,0.02703347,-0.37834284,0.49927455,-0.38980824,0.06570107,0.10035626,0.1008505,-0.14401898,-0.50023043,0.4968688,-0.38657314,0.11998501,-0.5713778,-0.14595008,-0.37027752,-0.32905772,-0.07222643,-0.52683973,-0.00336692,-0.21466401,-0.10641012,0.0107889,-0.05544655,-0.42268685,0.73359376,-0.01051455,-0.04565644,-0.60924476,-0.18997584,0.35363114,-0.44614363,-0.34080774,-0.67467946,-0.03785658,-0.00975914,0.00829175,-0.21324451,0.3601514,0.07105165,0.511765,0.20847346,0.00222955,0.2891561,-0.31835938,-0.12977645,0.17384785,-0.09521979,0.10275514,0.15095092,-0.07541793,-0.03549962,-0.26953608,0.2397848,-0.13424437,-0.13861252,-1.0078125,-0.41320083,0.15725434,0.06668542,-0.55505085,-0.34567076,-0.38684314,-0.3436794,0.23779765,-0.4315696},{-0.39023438,0.09031746,0.00923608,0.12062506,0.5487253,-0.69810265,-0.18993762,1.1328125,-0.04329248,0.14598231,0.24969536,-0.59744316,-0.06016501,0.03055265,-0.6423177,0.17674324,-0.48625204,0.17283832,-0.2221647,0.33372003,-0.17034154,0.54648435,0.52321213,0.48943016,-0.7444661,-0.09253112,-0.61102766,-0.28027344,0.27230242,-0.11915704,0.21272838,-0.69384766,-0.3806344,-0.01048555,-0.4586767,0.29003292,0.07026622,0.08619726,0.0730138,0.2133003,-1.1328125,-0.8917411,0.14648312,1.3125,0.19865376,-0.4385048,0.13332322,0.6365412,0.43192118,0.20076497,-0.16110957,-0.29481012,0.06719108,0.03580257,0.08129192,-0.24826154,0.5558894,0.38481444,0.14994182,0.01559485,0.01764418,-0.4954723,0.01776387,-0.41992188,-0.07102212,-0.89453125,-0.509653,0.34486246,-0.515625,-0.5105794,0.530935,0.61454135,0.12890017,-0.58588004,-0.27539062,0.14108522,0.015114,-0.49227062,0.48999763,-0.64099705,0.14110687,0.09032113,-0.53507966,-0.5316761,0.01747879,0.5786345,-0.40851152,-0.08040266,0.00997452,0.40355787,-0.1262252,-0.11074904,0.4127604,-0.1464433,0.2558471,-0.27734375,-0.01683677,-0.3436408,0.8723958,-0.29298615,-0.30657813,-0.10716932,-0.2174761,-0.4489488,0.12115935,-1.3046875,0.71300554,0.2617647,0.13914397,-0.48256138,0.90755206,-0.10911626,1.0390625,0.37594992,0.27246556,-0.5152264,-0.20212482,0.11223655,-0.20445153,-0.6745477,0.73372394,0.33398438,0.56459266,0.06355622,0.16698486,0.13820156,-0.22263367,0.09786674,0.62001956,0.34172043,0.57368606,0.04154814,-0.47723454,-0.20787795,0.2723776,0.5352941,0.15574637,-0.49169922,-0.19823329,0.01374537,0.10402309,-0.01099135,-0.08645767,0.13328841,0.3967184,0.4267108,0.3174707,0.41503906,0.25108808,-0.3408546,0.69572806,-0.3037372,0.04873079,0.06542409,0.02819824,0.14540803,0.02405335,-0.31532833,0.1260144,-0.45388454,-0.16260111,0.3839168,0.17977484,-0.49678057,-0.4265159,0.23711799,-0.3194192,0.01790261,-0.2328749,0.06858017,0.17273065,-0.19825163,0.06018737,-0.5201322,-0.29197064,0.18685877,0.16112284,0.13661535,-0.44403604,-0.6778646,-0.3895186,-0.1098998,-0.4383808,-0.24709108,0.3075133,0.61221594,-0.02495825,-0.07741268,-0.17574963,1.2578125,-0.6326014,-0.07842819,-0.04654125,0.02040001,0.14941406,-0.43129185,-0.46060893,-0.09494343,0.8880208,-0.00378638,0.46010044,0.32227176,-0.5335665,0.3028067,-0.20904344,0.3312446,0.06864848,0.26657006,-0.5910735,0.10476247,-0.4696757,0.00595002,0.02340128,-1.0234375,0.22802594,0.09496063,0.69602275,0.16941261,0.04811889,0.4447747,-0.24085559,0.2676352,-0.01208401,0.01934206,-0.0114098,-0.39731124,-0.01510465,-0.09304796,-0.09690117,0.2498019,0.07203414,0.7788086,-0.19190902,0.24225327,-0.11015583,-0.5075431,0.41996285,0.7578125,0.92285156,-0.05030338,-0.19622903,0.16409163,-0.2910941,-0.6563585,-0.14351635,-0.77126735,-0.33299324,0.7158954,0.05246287,-0.11979549,0.02314652,0.57855904,-0.68098956,0.46473336,0.06520387,-0.07546321,-0.37411898,-0.34756058,0.04167927,-0.509304,0.31046224,-0.3963473,0.0583403,-0.6474905,0.01794406,-0.14789797,-0.42978576,-0.06909804,-0.42773438,0.6777344,-0.37891555,0.05019468,-0.22313716,1.0126953,1.0195312,0.00625665,-0.16652186,-0.15964603,-0.28030095,-0.16840623,0.20798449,0.13322027,0.45501894,0.5635901,-0.10616478,-0.87475586,0.09177707,0.27352372,-0.29976776,-0.48569337,-0.15179172,0.33016855,0.06744131,0.11112406,-0.11006278,-0.05383275,0.28910404,0.25966674,0.14015315,-0.200308},{-0.528399467,0.118134953,0.107963905,0.0478662588,-0.598266602,0.516163766,-0.226126269,-0.10840597,-0.176230565,0.397387445,0.194833234,-0.0213728938,-0.140611187,-0.0420781039,-0.447114229,0.235321611,-0.12939924,0.305602878,-0.353428543,-0.357487977,-0.533453524,0.306711078,-0.146919891,0.0425991751,-0.25007835,-0.0262038875,-0.118379876,0.179142118,-0.250578016,0.467320025,0.587993443,0.563763797,0.379736334,-0.284981579,-0.00414035004,-0.687844694,0.322093278,0.0406662002,-0.188560441,-0.630301356,0.539272487,-0.267525345,0.912597656,0.636045277,0.389375001,0.357086182,0.0421057977,-0.089132905,0.2918365,0.0820946023,-0.367086112,0.146511927,0.0392952673,-0.188033879,-0.144066736,0.125350177,0.17621851,-0.216772065,-0.498972028,0.28629905,-0.527110517,-0.14645122,-0.225662142,-0.253875703,-0.818359375,0.676562488,-0.000229376441,0.200147152,-0.232423797,0.176239505,-0.203616738,-0.650390625,-0.150366023,0.294813365,0.0907601938,-0.411987782,0.135743782,-0.372173578,0.123061851,-0.321397573,-1.234375,-0.0673791617,-0.0423425213,0.296826422,0.150773779,-0.109405689,0.9609375,0.0657243878,-0.038630303,-0.27538234,-0.386807531,-0.449280322,-0.202652842,-0.216778696,0.3378672,-0.178656101,0.456147075,-0.406382948,0.199744269,-0.513822138,-0.174765036,-0.330085278,0.330101788,-0.0533527657,-0.0754233003,-0.558384478,0.294858694,-0.475477427,0.0197645556,-0.228515625,-0.220664293,-0.423870951,0.201646447,-0.238098353,0.0842088088,-0.358357072,0.248359382,-0.228513211,0.186944619,-0.286151052,-0.101086803,-0.0195947587,-0.0744809434,0.328160077,0.0423407219,0.360733122,-0.193339661,-0.76171875,0.13133119,0.39838773,-0.192883939,0.104694791,-0.0367416553,0.0827989727,-0.373875469,0.298819751,-0.106686011,-0.0864262655,0.703354776,0.377879888,-0.244117379,-0.276349604,0.214285716,-0.327028871,0.271506071,-0.0793261826,-0.121371098,0.754231751,0.217203096,0.110507526,0.00896785222,-1.2109375,-0.461742431,0.0874290392,1.1328125,-0.0615122691,-0.169425234,-0.233346492,-0.0462137237,-0.0785937533,-0.391272515,-0.0573799126,-0.368479997,0.0106335841,-0.222663939,0.311328113,0.647070289,-0.208500475,0.7890625,0.322265625,-0.343657255,-0.180689365,0.0873895288,-0.352371365,-0.0938032791,-0.129896283,1.34375,0.0271688104,-0.558730841,-0.423777401,-0.858289957,0.339790672,0.151377127,-0.592247605,-0.0561663099,-0.324374646,0.160640627,0.140632808,0.142542243,0.0299438927,0.276329994,0.0288447477,-0.581891716,0.122514687,0.255835146,0.1928287,0.0956943035,0.14251776,-0.409088343,-0.0986409038,0.20368576,-0.133269951,0.0320606194,-0.382840216,0.225581735,0.258852899,0.18846269,0.217698857,0.0383753739,-0.341826588,0.243600562,0.12887986,0.107316658,-0.109811217,0.342672408,-0.651367188,0.120611764,-0.037455745,-0.151773989,0.37991482,-0.00630156416,-0.249563664,-0.176730201,0.429608583,0.280266613,0.0378061756,-0.0661215335,0.010400272,-0.0150613571,-0.624674499,-0.0788171217,0.481995732,0.481719971,0.434754312,0.326093256,-0.0454144813,0.107675627,-0.703125,0.320316643,0.0964049548,-0.072997503,0.782552063,0.578032017,0.102313176,0.219684511,-0.144083709,0.69921875,-0.152407393,0.19670853,-0.483052313,0.0903493688,0.0618763678,0.353572637,0.602652609,-0.0569250025,0.0727208853,-0.283309489,0.128406823,0.383811414,-0.61102432,0.194814324,0.260742188,-0.127435356,-0.0756839514,0.423405826,0.0623815879,0.0158852786,0.532628655,-0.13186945,-0.507205725,-0.440759599,1.4921875,-0.411795914,-0.50390625,-0.147555918,-0.700420678,-0.0930555016,0.532307923,0.301606268,-0.0920893848,-0.231964111,-0.0761865973,0.273245394,-0.150877506,0.860351562,0.0615900755,0.200148344,0.282208025,-0.499007434,-0.0595558435,-0.354369372,-0.24408716,-0.242598683,-0.0741441026,-0.206525996,0.156247512,-0.53125,-0.0491779782,0.162593201,0.859375},{0.332984,-0.52910787,-0.1894084,0.52528214,-0.3203565,0.39442328,0.44818377,-0.02871503,0.08693291,-0.11990967,0.8068182,-0.39639354,-0.1923566,0.30278003,0.16451687,0.5308502,-0.06521401,-0.05605889,-0.07447691,0.01524238,0.35233802,-0.4620276,0.61055595,0.23536721,-0.17433695,-0.21292117,-0.09568341,0.12936997,-0.3593516,-0.38278565,0.0329512,0.22846805,0.06860288,0.15818274,-0.22707649,-0.26068306,0.0107306,0.3328762,0.28027606,0.39226118,0.38177636,-0.5228538,-0.2580093,-0.01901818,-0.26848656,-0.22362469,0.24781139,0.0577558,0.16599108,-0.02160394,-0.10499223,0.35288996,-0.2055798,0.61588544,0.32226562,0.03941473,-0.12939945,0.01169686,-0.03223574,-0.02318548,0.20888352,0.42274213,0.08450956,0.05837904,0.640625,0.46520543,0.2156213,-0.24834676,0.50830966,0.24832879,0.459928,0.33199424,0.25778067,-0.01183017,0.17144443,-0.07200818,-0.38562274,-0.06176317,-0.06639319,0.24829613,-0.7164714,-0.09596966,0.20997569,0.1714513,0.10740718,0.27927333,0.36411172,-0.01020718,0.36244783,-0.32819328,-0.18403259,-0.08740799,-0.4148084,0.19522278,-0.045908,-0.13624309,-0.2579334,-0.2793037,-0.59011316,-0.17238864,0.2763672,0.4770795,0.24219492,-0.12276223,0.24932183,0.21090233,-0.18693507,0.0033508,0.5270703,-0.04989196,0.20699975,-0.16109405,0.07469954,0.0546738,0.52943313,0.09952837,0.19778791,-0.56847095,-0.01870587,0.16595323,0.35057068,-0.40632513,-0.02068302,0.03577987,-0.18790181,-0.1293813,-0.04733485,0.48364583,1.0898438,-0.16558309,0.37972146,-0.07538529,-0.01979136,-0.6969866,0.44966266,0.7809245,-0.17817001,0.62997156,0.47153747,-0.56004053,0.15622127,-0.06327711,0.13132821,-0.57921875,0.23973297,0.26171875,0.03334961,0.08813722,-0.7786458,0.1449614,-0.02261965,-0.1547556,-1.3125,-0.4115809,0.46179992,0.18613133,-0.33008286,0.08175242,0.07545701,-0.40138534,0.05478251,-0.80078125,0.0347175,-0.8255208,0.08080063,0.07695509,0.28024867,0.09422184,0.24407351,0.14790636,0.57327175,-0.38527814,0.2774101,-0.24462716,0.17088059,-0.04089692,-0.19231188,-1.140625,0.45975462,0.11203447,-0.06640211,-0.431909,0.85234374,0.03797757,0.02934407,-0.27143723,0.48860678,0.36026084,0.21918179,0.43656448,-0.7639509,0.14607733,-1.3515625,-0.0269943,-0.10667619,0.22515604,0.04455963,-0.3524933,-0.04798281,-0.58416194,-0.6768663,0.01889641,0.19530681,-0.30381775,0.25140968,-0.3953555,-0.6142578,-0.3808103,0.5844634,-0.41008648,0.31352645,-0.04060274,0.18215305,0.73515624,-0.29094645,-0.22565585,0.257828,0.22849746,-0.01608688,0.2030114,0.32498348,0.18654037,-0.26180342,0.11403777,-1.046875,-0.13477658,0.3026093,0.30558383,-0.27544203,-0.3761102,-0.15672572,-0.22315519,-0.07106826,0.15385999,0.3728913,-0.26074773,0.31645575,-0.10988636,-0.07300118,0.45012018,-0.15636864,-0.45108572,-0.70703125,-0.83081055,0.02574258,0.25383523,-0.3809204,0.10084689,-0.18991344,-0.18998368,0.56059694,-0.25584504,0.1966901,-0.03387283,0.12646206,0.37026563,0.13970736,0.19092794,0.45934895,-0.43617833,-0.64331055,0.02969159,0.13425611,-0.5310802,-0.01044765,0.21289693,0.19574219,0.23377244,-0.2528915,-0.1597409,0.03890832,-0.36032832,-0.03134995,-0.6764323,-0.1086467,0.11232275,-0.07029394,0.24104564,0.06962005,0.18901296,-0.6190625,0.2516347,0.74078125,0.30272618,0.0496919,-0.3556369,-0.33405808,0.49117875,0.25404426,0.14835453,-0.00999553,-0.51019967,-0.05907717,0.22853611,0.23782584,0.31837592,0.22649881,0.5330141,0.36627692,-0.23185834},{0.4268392,0.15771933,0.1274576,0.2138437,-0.28907275,0.17630473,0.2860628,0.37315893,-0.14699356,0.5623753,0.2988511,-0.18695863,-0.44396034,-0.01509971,-0.31343114,0.44331548,-0.23288122,0.2783118,-0.25377202,-0.29196477,-0.13812967,0.02738728,0.05686438,-0.13327962,-0.02687536,-0.13283277,-0.16402908,-0.03211954,-0.16502854,-0.19965261,0.12734814,-0.04707301,0.02112331,0.00827378,-0.02488112,-0.82135415,-0.00814228,-0.02204646,0.22363728,-0.49695677,0.06565521,0.07839481,0.21191767,0.14018445,0.02872313,0.28088123,-0.12085705,-0.31834993,-0.06252,-0.12282415,-0.7233665,-0.24841282,0.13623118,-0.12937628,0.25876266,0.9121094,-0.02145085,0.12214426,-0.75859374,-0.16163589,0.3958834,0.60913587,0.55078125,0.20540263,0.01808604,-0.28518075,0.11493237,-0.00486812,0.21685775,-0.25750035,-0.38348803,-0.3868442,0.02408439,0.33076862,-0.01744988,-0.01533527,-0.3337816,-0.78162205,0.22116505,-0.02321061,0.07857422,-0.00240607,0.6660156,0.13967155,0.08520383,-0.4309896,-0.01942095,-0.503125,-0.5142822,-0.02700122,0.07080159,0.09984957,-0.02097976,0.11986043,-0.8564453,-0.10992961,0.16897333,-0.7263105,-0.08903714,-1.359375,-0.14641054,-0.03712585,0.70751953,0.38372394,-0.23145911,0.08086158,-0.03016527,0.18897164,0.3847863,0.15183416,0.07198328,-0.37398937,0.02382821,0.7526042,-0.2099491,0.4702982,0.9785156,-0.15429404,-0.13619804,-0.41508687,-0.13133776,0.05189968,0.43557328,-0.6042187,-0.14881982,-0.7845052,0.21035083,0.90668404,-0.17187302,0.7542067,-0.62048614,-0.02040261,-0.31235027,-0.05092636,0.6595553,0.22509861,0.18952455,-0.33094707,0.04739494,0.31248575,0.47848648,0.13221546,-0.56861216,-0.46950385,0.05146276,-0.70033485,-0.30074415,-0.26960185,-0.1728335,-0.10133997,0.41788208,-1.0097656,0.41242367,0.5706473,0.24276242,-0.21626255,-0.05972438,-0.13045436,-0.17237547,-0.5119629,0.26363447,0.3153239,-0.22755042,-0.28898135,0.41604003,-0.68125,0.9082031,-0.23689477,-0.12258153,0.01507889,-0.14105828,0.24273004,0.17386377,0.16456269,0.01474404,-0.20855437,-0.25582838,0.6386719,0.2762966,-0.2949312,-0.01239808,-0.02054318,-0.18649133,-0.46872854,-0.00547658,0.48227853,-0.00739833,0.2704564,0.27246442,0.13184306,-0.31631273,0.18700793,0.34651694,0.4620565,-0.1357611,-0.19870257,-0.20024376,0.34755644,0.27131906,0.07663909,0.02169689,0.23391327,-0.4111643,0.12369369,0.6547309,0.04328173,0.2598416,-0.61099136,0.75651044,0.6606771,0.34773973,0.06882676,-0.6966712,0.5656622,0.03079535,0.24458742,0.22995569,-0.4495512,0.08447523,0.6322917,-0.75217015,0.10743734,0.23874171,0.20016634,0.03132216,0.05943955,-0.03746036,-0.41897282,0.696875,0.15088327,-0.14163314,-0.13232706,0.15719563,0.27533257,-0.00355276,1.1328125,0.12792392,0.13323204,0.04127723,0.20163432,0.33495533,0.28610408,-0.5501512,-0.12835938,-0.02145774,0.12435296,0.39931777,0.17627305,-0.12134156,0.11296859,-0.27921605,-0.22023438,-0.23779663,-0.1841161,-0.11356413,0.43931362,-0.09934172,-0.3358286,-0.12590198,-0.06933101,0.3896602,0.20462498,-0.09713142,-0.8328125,-0.588199,0.1850228,-0.03091822,0.06300924,-0.05723004,0.27830675,-0.3338726,-0.07615893,0.08373185,0.22410676,-0.3585105,0.3340966,-0.38282827,0.14701422,0.89453125,0.60423803,0.245014,-0.02570046,-0.20323779,-0.41598624,0.6389358,-0.17526278,0.018925,0.40046412,0.00904499,-0.7421875,-0.07151211,0.15329072,0.03320639,-0.10476746,-0.08346458,0.04889539,0.08347297,-0.1357202,-0.47014508,0.04138403},{-0.113090217,-0.336236775,-0.34379223,-0.517755687,0.0993232578,-0.171424761,0.0830239728,-0.00476374943,0.197275728,0.000969731715,0.163480088,-0.0522346199,0.288219571,0.0910739452,0.0309384633,-0.81640625,-0.400426149,0.204630867,-0.151852295,-0.475681394,0.873697937,-0.140608698,0.29883647,0.86328125,0.537231445,0.115437761,0.0759150162,0.33585611,0.0342695676,0.309767514,0.333080351,0.0244786963,-0.273465633,-0.0786110014,-0.322166204,-0.00675669545,-0.129339874,-0.353253633,-0.890625,0.00284599024,-0.0248976201,0.498647839,-0.0560772941,-0.124445073,0.568847656,0.000320225052,-0.870535731,0.102777906,-0.325212985,-0.187999249,0.222652167,-0.126673639,-0.0267830603,0.0105234003,-0.506986201,-0.84375,-0.264641374,-0.678059876,-0.167864725,-0.281398028,0.336822808,0.0589433983,0.223084226,0.00472818501,1.2421875,0.217203438,-0.207470089,-0.78515625,0.0378179215,-0.434318304,0.853794634,-0.0739677995,0.32824707,-0.257661045,0.253284812,-0.462811589,0.391584009,-0.205059156,-0.153843686,0.278276265,-0.0172854159,0.265625,1.3046875,-0.312505662,-0.128397837,-0.358078688,0.0985786319,-0.191369101,-0.236331895,0.527057946,0.55229336,0.326205939,-0.133834988,0.761924326,0.0834671259,0.592151999,0.238290071,0.612196207,-0.384806901,-0.024302477,0.388322532,-0.057239037,-0.8046875,0.143101528,-0.150879785,-0.323213816,-0.150354818,0.0624985769,-0.505123794,-0.187882423,-0.124591932,-0.187478736,-0.0737356246,-0.139152512,0.0598245636,-0.314377993,0.500315011,0.245609134,0.722925663,-0.548883915,-0.15621075,-0.0700614527,0.299735218,0.425761729,0.490223527,0.321271628,0.54148066,0.0722257793,-0.0300051551,0.104963541,-0.0776607394,-0.277283818,-0.866319418,0.432276517,-0.715959847,0.398302019,-0.147937596,0.147939369,0.16253911,-0.0428162664,0.583251953,0.483966202,-0.0316459313,0.382574558,-0.194327667,0.229552329,-0.0193390977,0.22366187,0.506270587,-0.21083498,0.0869424492,-0.227059692,-0.0378076285,-0.130876809,-0.499720991,-0.185569778,-0.430446565,0.253841609,-0.216786444,-0.0146052642,-0.110581376,0.0249060504,-0.195823714,-0.0289325248,-0.6640625,-0.381600738,0.20359762,-0.161607891,-0.152865797,0.224182516,-0.182634056,-0.461808503,0.756510437,0.445855021,0.1303536,0.676897347,0.0312321112,0.185201451,0.845703125,-0.221227005,1.3515625,-0.313491285,0.385946244,-0.369327158,-0.21533291,-0.513316751,-0.229286045,0.618326843,0.080314979,0.0514435135,0.169389203,-0.0219782777,-0.102294639,0.34565571,-0.444547355,0.167047471,-0.814732134,-0.14550595,0.210426956,0.515384614,-0.131335571,0.397381037,-0.0278914608,-0.666796863,0.559977233,-0.265652448,-0.297899365,-0.726973712,-0.140128508,0.19967708,0.208532944,-0.300788373,-0.288919419,-0.146022752,0.134739518,-0.294690579,-0.219713941,0.300912857,-0.375107318,0.172877803,-0.0474687628,0.391316921,0.170420259,-0.488882214,-0.261684716,-0.111766882,0.104752764,-0.121317543,0.183000088,0.11966037,-0.0255268924,-0.0339239314,-0.498535156,-0.380020261,0.144004717,-0.911132812,0.0658979043,0.108692102,0.398302794,0.38341704,-0.614149332,-0.0144153042,0.081587635,-0.166471556,-0.0986303762,-0.201097116,-0.754231751,0.0730424896,-0.225531951,0.179677457,-0.168388948,0.734809041,0.134713143,0.849218726,-0.0350270197,-0.212394476,-0.207484722,-0.300735354,-0.886284709,-0.207070783,1.1484375,-0.0200753547,-0.774414062,0.241303653,0.622974515,-0.709375024,-0.0686075464,-0.533166289,0.148066193,-0.254933655,-0.079862982,-0.572415888,-0.359292477,0.31842187,-0.259716809,0.0232163202,0.30291748,0.674804688,-0.504254997,0.214850277,-0.82421875,-0.245642453,-0.050509572,0.0390762202,0.353613734,0.404101551,0.513223886,0.776171863,-0.0686270148,0.31633997,-0.181220293,-0.172848299,-0.169452131,0.340709239,0.139150515,-0.278355598,0.185519755,0.382161468,-0.358088791,0.738606751},{0.28310058,0.48890725,0.3446137,0.17524587,-0.13434094,-0.9238281,0.91328126,-0.22366194,0.37595087,0.7258301,0.01837881,0.5234375,0.04045036,0.00140037,-0.1132841,0.11668578,0.2646573,0.24924202,0.7766927,0.07913623,0.0400015,0.3826069,-0.37394616,0.17038879,0.0382295,-0.31640193,0.5348558,0.08589049,0.37033033,0.3650625,-0.6040039,0.3311165,-0.33679026,-0.33293688,-0.29097673,0.48422477,-0.17376195,-0.0929733,0.44264156,-0.01639766,-0.10666776,-0.32903856,0.2772823,-0.3964246,0.08686829,0.66796875,-0.55248743,-0.6818182,-0.5011068,0.23246804,-0.01172054,0.17037155,0.7914063,0.50264245,0.9296875,0.20951618,-0.1986398,-1.1640625,-0.19970573,0.09908527,0.78776044,0.08126254,0.1616809,-0.37298158,-0.3594468,0.17728631,-0.37491363,0.554214,-0.4075822,0.37031785,0.28125632,-0.7713068,-0.18751772,-0.10568901,-0.24883807,0.08426942,0.15960574,-0.9027778,0.29292652,-0.36914062,0.72734374,0.37675074,-0.12368128,-0.26857406,-0.5968339,0.20159553,-0.19479181,-0.33250076,0.2949789,0.02517663,-0.4841561,0.23986858,-0.17817695,0.6088119,-0.24266003,0.0504199,0.33301595,-0.1967682,0.01265063,-0.20700851,-0.10811242,-0.3817652,0.16942893,-0.02999988,0.06930055,-0.2256275,-0.057621,0.33390397,0.0482095,-0.12180803,-0.93359375,-0.05409283,-0.22264948,-0.00500102,0.00236879,-0.02925548,0.4218454,0.20450653,-0.61510414,0.37977326,-0.05342162,-0.12105217,-0.81780136,-0.49955356,-0.07934847,0.09104768,-0.3427445,0.31928992,0.27833515,0.1894203,0.08055419,-0.39927956,0.03952518,-0.5405134,0.00193926,0.263659,0.07491522,-0.11186408,0.39335293,0.51953125,-0.05285215,-0.19044818,-0.23579764,-0.04276113,-0.5515625,0.09815322,-0.24514858,-0.01480437,-0.1122824,0.08198741,-0.36708984,0.28518146,-0.34281328,0.5004524,0.2143873,-1.140625,0.33005252,0.29294023,0.02414538,-0.09569275,0.4071438,0.22268452,-0.595625,0.52472425,-0.03166522,-0.28709975,1.28125,-0.48087484,-0.4831627,-0.4644275,0.27910674,0.6394361,-0.05331175,-0.03147234,-0.4030784,-0.02175852,0.24881758,-0.06005431,-0.24970955,-0.18019754,-0.2065446,-0.08249745,-0.00147809,0.7519531,-1.15625,0.11176579,0.3467668,-0.20063576,0.4429199,0.5333215,0.09905896,0.40024534,0.49833778,0.3908681,0.3261061,-0.33599174,0.14501563,-0.03970775,-0.6000689,-0.2358446,0.53874683,-0.45180288,0.40338653,0.03454948,0.28711617,0.9140625,-0.03123432,-0.06055474,0.16738185,-0.5175781,0.03821351,0.08891807,0.1480479,0.11547852,0.08348215,-0.05761749,-0.32514137,0.13914032,0.02147656,-0.7952009,0.11249739,-0.20462719,0.00995866,-0.14886568,0.08936667,-0.16459481,0.08449876,0.54014754,0.28425828,0.59939235,-0.3670333,0.01980839,-0.34687033,-0.2578434,0.8203125,-0.23583463,-0.4199457,0.36170152,0.45019054,-0.14746784,-0.10135698,-0.6264088,-0.10816976,0.15482205,-0.07744006,-0.43327057,-0.08987693,-0.38765702,0.1571426,0.00854537,-0.46076515,-0.01785517,-0.15283564,-0.08571625,0.17632858,0.796875,-0.65875,-0.21192636,0.24214981,0.05713259,0.03754812,0.10934684,0.16356625,-0.09788577,-0.0688822,0.28115252,0.24649405,0.40154657,0.88671875,-0.11009248,-0.71777344,0.4511831,-0.10913192,0.1796912,0.77642465,-0.43936604,-0.22897913,-0.22949673,0.18177916,0.34772643,-0.26352036,-0.31644225,0.16015807,0.37563232,-0.58434606,-0.468937,-0.1396594,0.09744282,0.03054884,-0.16800925,-0.3066788,-0.33016557,-0.1269861,0.12943901,-0.2775363,-0.20408766,0.42196044,0.1463693,0.6333807,-0.0880648},{0.119107939,-0.191391885,0.15279232,-0.0671780482,-0.0922896639,-0.139658988,2.0,0.150282577,-0.0245469324,-0.0899266675,-0.123225234,-0.266596377,-0.587768555,0.392545462,0.535400391,0.279285997,-0.669270813,0.0292460546,0.0822452679,0.113053769,0.638760626,-0.24976036,0.870703101,-0.0415156037,-0.434496462,-0.2851457,0.411207944,0.206535071,0.176787987,-0.500367999,0.256855875,0.119875319,0.9140625,0.513427734,0.0742210969,-0.117928728,0.0957198218,0.445531726,-0.0756284148,0.569117665,0.0353896283,-0.0852015018,-0.93359375,-0.148861185,-0.245501578,-0.546697438,-0.448365659,-0.509184957,-0.210432529,0.173806801,0.570833325,0.302786112,-0.102573171,0.0593807995,0.178739369,-0.00512810284,-0.418761492,-0.513549805,-0.29295361,-0.0463805571,-1.4296875,-0.205520958,0.105734423,-0.223641053,0.545093179,-0.245589778,-0.749348938,-0.209985912,-0.109147236,-0.0628072247,-0.318372756,0.0184155684,-0.00910002179,-0.298838615,-0.605567217,-0.331929088,0.8984375,-0.0181827657,0.0593047217,0.443318963,-0.348474234,-0.170483395,0.0630123466,-0.107193716,-0.177775547,0.104468189,-0.0737228692,0.597153485,0.418085158,-0.0462544113,0.428592891,0.203230813,-0.110074356,-0.0415378064,1.7109375,-0.000148951585,-0.172412261,-0.0165004339,-0.354348779,0.140549883,0.0624251924,-0.17137453,0.289037526,0.0927978158,-0.000469490653,-0.124169849,0.479936093,0.147473022,-0.134708568,0.533346057,-0.407171488,-0.334068179,-0.104486533,0.565646708,-0.171267256,-0.0577726997,-0.0773476288,0.43161273,-0.247371972,0.0095880786,-0.387545377,0.031398613,-0.351670146,-0.020615682,0.210943818,0.117139362,0.156669468,-0.0160313565,-0.117428601,-0.139719009,-0.3691625,-0.196313038,-0.126977742,0.589274108,-0.272421598,-0.175764263,0.533236206,0.18118991,0.345638514,1.40625,0.241137847,0.0881531984,-0.431792676,0.00752821052,-0.00263440027,0.00741417799,0.0526123047,1.1640625,-0.127917781,0.343959719,0.0555500947,-0.533400893,0.107199222,0.152315319,0.00158135651,-0.442389041,-0.374008864,-0.39656046,-0.264648438,-0.250203162,0.477962852,-0.0795572475,0.129846081,-0.25139001,-0.0107260393,-0.107168101,-0.229480699,0.151812419,-0.397445351,0.399252117,-0.480383307,0.0857048929,-0.161593631,-0.146951243,-0.214915797,-0.245604128,0.485294104,0.391501904,0.24255152,0.0602858961,0.283226371,0.503076196,-0.0681173876,-0.0411566719,0.730712891,0.134777278,-0.104952246,-0.848632812,-0.473527253,0.583953381,-0.030159669,0.348608077,-0.268584937,-0.344533831,0.00803495198,-0.0954113826,-0.169399709,-0.120048173,0.431541324,-0.323956847,-0.476905614,0.1987167,0.10601256,-0.553982198,0.0233475417,-0.736842096,0.735576928,-0.187472746,-0.737821698,-0.218236655,-0.148420498,0.699497759,-0.427426785,-0.396291465,0.645898461,-0.198263332,-0.0680457354,-0.133412972,-1.21875,0.236337647,-0.215359226,0.0681705326,0.0498656668,-0.00595819997,0.146983236,-0.472848356,0.535359144,-0.0582589954,-0.0538261868,0.301775396,-0.503689229,0.592968762,-0.163087994,-0.0551631525,-0.232862234,-0.279336542,0.234888554,-0.0530489609,0.626888037,0.177683055,-0.0143066952,-0.132301182,-0.174344242,-0.287273496,-0.647949219,0.0654466748,-0.00106206024,0.50109458,0.128469065,-0.99609375,0.298852921,-0.837002814,0.114999607,0.21136944,-0.306504995,0.173815101,-0.138190165,-0.551136374,-0.255823791,0.522181928,0.44140625,-0.479333222,-0.38264358,-0.0145436572,0.0618909374,0.0968394279,0.368172854,-0.153845891,0.173343673,-0.328317106,-0.480696291,-0.110315479,0.241112441,0.0616452284,-0.0394588597,-0.0540745035,-0.280322254,-0.49916634,-0.215321571,0.0317258313,-0.0141897565,0.28533569,-0.0251516905,-0.471633196,-0.13224712,0.488932282,-0.410837561,0.0340502076,0.33788234,0.253959566,0.0149783632,0.28312102,0.418504894,0.622488856,-0.3984375,-0.128407598,-0.116225734,0.197345927,-0.0018280365,0.0949675068},{-0.134823337,-0.0625544339,-0.803385437,0.0649215281,-0.388603479,-0.0307138097,-0.082089141,-0.180141509,0.0429804213,0.17280744,-0.196307406,0.384027779,0.696986616,0.854910731,0.303582251,-0.282208592,-0.198713779,-0.469758064,-0.471257716,0.501383483,-0.0751441121,0.842447937,-0.0411711819,-0.0159182735,0.0591892414,-0.47361204,0.0996139273,-0.351579934,-0.0820192099,0.0551012307,0.442438602,-0.12059886,-0.11429438,-0.860677063,-0.167926222,-0.301828563,0.118718959,-0.818750024,-0.400366515,-0.0575650074,-0.137253225,0.135302886,0.171370447,-0.189464003,-0.440953702,-0.276343286,-0.332073241,0.0339375846,-0.00127408514,-0.401870877,0.490656674,-0.597412109,0.254977077,0.329096705,-0.0562438183,0.40526107,0.482347697,-0.380626023,0.122019477,-0.14065066,0.263569087,0.469765633,-0.166517138,-0.116478309,-0.100337386,-0.210417897,-0.329017669,-0.0321929008,0.150956452,0.124004319,-0.0581325442,0.160650954,0.173807144,-0.390647203,0.342734367,0.347423732,-0.264730185,0.200230375,-0.0289744847,-0.52327913,0.393892378,0.780273438,0.0119526535,-0.237367287,0.272364765,0.0578671955,-0.208069578,0.178235531,0.555634499,0.35538888,-0.00841960683,-0.390357971,-0.293910533,-0.175850317,-0.386802942,0.165034339,0.00741851889,-0.6264323,-0.151367188,-0.114566036,0.304733694,-0.2456249,0.144994915,-0.0131047722,-0.197175205,-0.0647041723,0.583550334,1.02187502,-0.203581616,0.207973376,0.56640625,0.8828125,0.123258464,-0.326128483,0.30278635,0.240753964,-0.00950400438,0.0821231157,0.198724896,0.281142503,-0.248830512,-0.171787843,-1.1484375,0.0193612948,-0.06709598,-0.0354283452,0.341354162,0.814985812,-0.374790728,-0.00860998593,-0.0595363751,0.426309466,-0.150868118,-0.109086625,-0.149407357,-0.0912429765,-0.23226203,-0.160183266,-0.353276759,0.137701675,0.424860805,-0.0861509591,-0.0599287525,0.0771401897,0.286224574,-0.217266932,-0.449985623,-0.126019061,-0.284923911,-0.0675745532,0.355460912,0.0401388854,-0.122996598,-0.302741975,-0.134762347,-0.0218766015,-0.258846998,-0.0939996764,-0.096714884,-0.57972759,0.156267494,-0.172929212,0.288968056,0.438571066,0.134264395,-0.0746938512,-0.104771912,-0.766276062,0.0052530379,-0.243024558,0.145434245,0.292019784,-0.413622737,0.0214292984,0.7734375,0.0287232473,-0.828125,-0.593679607,-0.0521406382,-0.0162014235,-0.438440084,0.739062488,0.331164181,-0.330101848,-0.0903718323,-0.440801054,-0.162073895,0.0441732258,0.520883441,-0.3443892,0.106464401,-0.0615158081,-0.377033025,0.0518986434,-0.167981267,0.0133091081,0.805175781,0.244689032,-0.217775285,-0.0683398619,0.238229677,0.161132812,-0.651083648,-0.206530258,-0.24514167,-0.5269804,-0.485291779,-1.171875,0.0630267337,0.42836827,0.176790923,-0.372082889,-0.348406285,0.223164141,-0.0593389086,0.375633717,0.532012224,-0.094290033,-0.28417325,-0.00967765599,-0.141090602,0.287059516,0.0747086331,0.150376379,-0.086394988,-0.0846761614,-0.180076301,0.258877844,0.407044888,0.778409064,0.0282359552,-0.322030663,0.305587053,0.0116867796,-0.337018132,-0.444452643,0.394252241,0.032831829,0.253893375,0.302825809,0.986979187,-0.164050892,0.352379709,-0.0500204414,0.409545898,0.354682267,-0.269522876,-0.0684027746,-0.310444087,0.833593726,0.684972405,0.282190114,0.540578365,0.0347906873,0.102785662,-1.4921875,0.0893479884,0.33241719,-0.0751881674,0.352501005,0.618652344,0.379420221,-0.262690008,0.340027809,-0.231455564,-0.22161679,-0.00500069605,-0.125744402,0.247899011,0.435515374,-0.0167977158,0.167446896,-0.717075884,-0.0966073275,0.268624574,-0.243535832,0.77734375,0.209365025,0.267578125,-0.277134478,-0.194867566,0.0316733867,-0.172320977,0.470854819,0.142530695,0.16546835,-0.643880188,-0.193361551,-0.652777791,0.124675505,0.455973297,0.029735608,-0.209032536,0.0447091311,0.40746671,-0.388635695,0.143063962,-1.3125,0.319385171,0.000316785008},{0.474121094,-0.110343896,-0.0447771996,0.284105182,-0.063824296,-0.0923071355,-0.141103536,-0.551031649,0.58923763,0.34949863,-0.165056974,-0.00128673168,0.0636771172,-0.101877801,-0.0152416285,0.306509465,-0.0513921306,-0.230451077,0.0596827716,-0.685908556,0.185043365,-0.195394158,-0.791666687,-0.188920453,0.00768049713,-1.34375,0.0644460246,-1.078125,0.0998949707,0.590533078,0.0798551962,-0.0098948339,0.593261719,0.0266870912,-0.609151781,-0.490187317,-0.233795509,0.748934686,-0.104707778,0.450781256,0.200150773,0.331106097,0.0248662233,-0.0932301208,-0.207467213,-0.485236675,-0.0808248147,0.362230986,-0.294014722,-1.0,0.266418189,-0.344581991,-0.277366459,-0.00909225736,-0.0900801271,0.0185545664,-0.372965008,-0.0489985645,0.0939853266,0.0499857105,0.0852934942,0.535084605,0.379873514,-0.343813151,0.102759622,0.00786245335,0.291286886,0.275405705,0.28322506,-0.0864143819,-0.841796875,-0.232471079,-0.406714112,0.514989078,0.400333166,0.214825585,-0.43182373,0.287946433,0.257756442,0.813476562,0.0597796626,-0.243319243,-0.150830001,-0.0861488432,-0.325104713,0.0376842245,0.477880865,0.417982906,0.327379078,-0.00276460382,-0.230981678,-0.316455275,0.0869231746,-0.0766882896,-0.118897595,0.0998740271,0.561839759,-0.538577795,-0.219729483,-0.647063076,-0.51171875,0.841406226,-0.400157422,-0.236319765,-0.41673401,0.114514224,-0.661024332,-0.0533022173,0.166015625,0.385661542,-0.453972578,-0.265565068,0.343792319,-0.378752619,-0.471724063,-0.100270629,-0.117151611,-0.12789394,-0.0107670659,0.593149066,-0.0725192875,0.195752233,-0.402484089,-0.0752736628,0.4296875,-0.0683861896,-0.421741843,-0.380970538,0.0558785237,0.146995619,0.138680175,0.172835305,-0.421938509,-0.133320168,-0.0179060716,-0.113287568,-0.34367767,0.0654324293,0.556989372,-0.0985607281,0.335020125,-0.222726852,-0.196809575,-0.018585531,0.214270115,0.0249926746,-0.814062476,-0.198208094,-0.106680326,0.0273425672,0.035927698,-0.086669378,0.0775778443,-0.794270813,-0.292111963,-0.398419172,-0.7578125,0.420060158,0.347724795,0.411755949,-0.0283474568,-0.481835932,-0.418322176,-0.115411527,-0.487172067,0.701171875,0.374058306,0.460055441,-0.880468726,-0.130353987,-0.383654565,-0.136755347,-0.135291666,0.0691263229,0.561941981,0.0983934253,0.273301154,-0.0961830989,0.130315393,0.559678793,0.174400255,0.0624603443,-0.279284567,0.153709844,0.16897276,-0.0150188059,-0.557414532,0.064163968,0.590871692,0.0849977657,-0.422628015,0.279389888,-0.00658607483,0.258704662,0.211992979,0.948102653,-0.123946637,-0.267494351,0.0195367578,0.428701818,0.40325743,-0.116216242,-0.265577435,0.91796875,-0.13374716,0.127409101,-0.0656373203,-0.257850319,-0.283179253,-0.158689976,-0.0223598816,0.204585493,-0.144957975,-0.219671473,-0.440357357,0.0228027347,0.146385759,-0.279360116,-0.0546555482,0.0333180539,0.185009673,-0.716406226,-0.564797819,-0.0287972577,-0.320166737,0.544806957,1.1640625,0.0486038066,0.00286798831,-0.00754700042,0.57536763,-0.163521513,-0.0113056898,0.0839499757,0.0778642893,-0.0712970793,-0.031688422,0.183524907,0.709780097,-0.230832294,0.775923312,-0.399497986,0.0246018544,-0.259646863,-0.826822937,-0.116954952,0.454597354,0.274373829,-0.0221928284,0.0341975912,-0.548713207,-0.326331466,0.0762078315,0.282190055,0.233345956,0.000274592807,0.764322937,0.00700054225,-0.279188901,-0.243219465,-0.139194101,0.293928623,0.0827610865,0.0183061864,0.308603078,0.0177863222,0.0324829109,0.151358664,0.208056644,0.0201142915,-0.935546875,0.347694188,-0.192179427,-0.00984286517,-0.532226562,-0.502898872,-0.0234210826,0.0715818927,0.231406525,0.105451606,0.032496307,0.20403415,-0.277212858,-0.100313209,-0.514146984,-0.616517842,-0.0832678005,0.5703125,0.579290032,0.438414842,0.861328125,0.116174512,-0.339792341,-0.359359384,0.745225668,0.367242128,0.643930316,-0.108378515,-0.577194929,-0.322121352},{0.3681168,0.0247338,-0.63151044,0.33196503,0.43299788,-0.475472,-0.26371172,-0.62269175,-0.6767578,0.1181709,0.07843578,-0.36134806,-0.890625,-0.21633752,-0.22951339,0.01295832,1.0703125,0.12891062,-0.11664955,-0.38955754,-0.283374,-0.2938514,-0.01883072,-0.23335612,-0.28502676,0.04897263,0.22705273,-0.1686332,-0.45002547,-1.375,-0.20551601,-0.55676746,0.04111079,0.17915271,0.12884647,-0.20263276,0.21818253,0.06241191,0.00948091,0.10937832,0.31156707,-0.02527997,-0.39863884,0.4296744,0.7859375,-0.02722746,-0.2939839,-0.28323123,-0.2597738,0.02635529,0.12183999,0.19234923,0.32108366,0.36976662,0.5076204,-0.054441,-0.231382,0.8300781,0.2666099,-0.53884244,0.17384592,-0.4226262,-1.0,-0.18359196,-0.26374978,-0.1189177,0.1280409,-0.43714657,0.09247794,0.1528218,-0.46409073,0.1322984,-0.5919118,-0.16454999,0.12464693,-0.2250227,0.10228792,0.50787985,0.5313266,0.18161151,-0.03605902,0.23520285,-0.5900608,-0.06443722,-0.43960938,0.48519146,-0.30278596,0.20406434,-0.37101483,0.17284885,0.316202,0.46922743,-0.23336379,0.38581684,0.22564648,-0.59512866,0.12441052,0.419375,-0.4873047,0.09110386,0.65447444,0.05503026,-0.09151103,0.15866768,0.28122884,0.14939383,-0.02337437,-0.08150106,-0.24310735,-0.38162023,0.14063759,0.0329539,-0.584375,-0.44422743,-0.09157062,-0.06447073,-0.02713483,0.34675148,0.100363,0.10181126,0.24278286,0.14989285,-0.1528251,0.10107962,0.56998354,-1.2265625,-0.3143654,0.17439193,0.08815881,0.6605469,0.23440427,0.3165697,-0.26654693,-0.08741419,0.08157042,0.18064924,-0.0367287,0.01868889,0.10843283,0.17578746,-0.53285843,0.16261575,0.17433402,0.87402344,-0.11841115,0.3192817,-0.17432357,0.13671623,0.0756784,-0.011205,0.6327597,-0.01509905,-0.28216502,0.3143424,-0.0495812,-0.10449161,-0.6209985,0.12185713,0.00375448,0.3133415,-0.26742357,0.5985677,0.39247483,0.281272,0.31247923,-0.15280432,-0.4657258,-0.00158312,0.15191275,0.12203719,0.35662842,0.21730581,-0.11133353,0.31061882,-0.16549614,0.12625739,0.22503434,-0.4726776,0.06058509,-0.884375,-0.03346343,0.38252628,-0.3780382,0.09476244,0.09441159,0.06289438,0.01304317,-0.2754313,0.02560012,-0.07256505,0.36902848,-0.3126124,0.07931698,-0.22642669,0.18503767,0.6163918,0.47767505,-0.3154456,-0.12230278,-0.4377075,-0.27913994,-0.14981042,-0.29396024,-0.34744197,-0.11232155,-0.91015625,0.5629883,-0.00335447,-1.1171875,-0.05649347,0.0090632,-0.5667067,-0.5296274,0.00594637,0.94140625,0.10718805,0.28212246,0.33987957,-0.09595596,0.3272148,0.24972753,-0.0573181,0.09152428,0.17629722,0.6781994,-0.00540266,0.2596646,-0.36428767,0.36116728,0.01637582,-0.25181842,-0.46104702,0.00765387,-0.20260377,0.48929536,-0.31058094,-0.3083718,-0.08269611,-0.24782754,-0.3908712,0.16702804,0.34382972,0.10519364,0.18207648,-0.26268408,-0.12371602,-0.18160065,-0.31719807,-0.5479307,0.4921492,-0.3936923,0.24462466,-0.372942,0.16497965,-0.6953125,0.09643555,0.46073645,-0.01600045,-0.19975828,-0.78027344,0.26854718,0.50254756,-0.17617187,-0.38680753,0.1386789,0.15913469,0.4281039,-0.08710257,0.05171646,0.1347289,-0.24964766,-0.13915871,0.2988204,0.43348438,0.3203082,-1.1640625,0.01874456,0.38678816,-0.19296356,0.54277015,0.10779979,-0.4675781,-0.13820693,-0.57992786,0.39564854,-1.090625,-0.5170599,0.18706985,0.5138561,0.47661492,-0.5961416,-0.646875,-0.5473472,0.41179973,-0.35537368,0.12933438,-0.3269508,-0.08721975,-0.27660683,-0.18557869},{0.2319131,-0.03673952,-0.13091198,-0.399369,-0.04391255,-0.29110244,0.12161194,0.06934584,0.4605306,0.45212176,-0.06235883,-0.51930445,-0.02619182,0.43562618,-0.05549714,0.7828125,-0.2635883,0.22708814,0.02027278,0.35327888,0.30566406,-0.04533513,0.16648114,-0.30864543,0.6064732,-0.5370388,-0.49144796,0.01286683,-0.11940766,0.11693633,-0.29677802,0.37681022,-0.04287316,0.5782986,0.17926818,-0.5873512,0.44813225,-0.65600586,0.7271205,-0.40911457,-0.2608161,0.02548248,-0.32129803,0.01012059,0.0480431,-0.5994038,0.5755208,0.07539406,0.2754357,0.90494794,-0.18701172,0.08937506,0.22663726,0.28514892,-0.03711328,0.13380294,0.22025476,-0.3066437,0.3668754,-0.36311302,-0.02386392,0.28903204,-0.299873,-0.13530332,-0.4503534,-0.05422587,-0.22612265,0.14603439,0.1864874,-0.1338465,0.22999065,-0.5131268,0.20461844,-0.12931782,0.00382708,-0.02247483,0.4581106,-0.10474566,-0.29883686,0.01939158,-0.314422,0.51363635,-0.26957121,0.2070703,0.12598164,0.08301424,-0.12480523,0.3652388,0.18255089,0.04764624,0.36953673,0.12834269,-0.53845847,0.44028366,0.00432023,-0.19196957,-0.14394437,0.13619275,0.05982562,-0.08647143,-0.26356715,-0.01328503,0.10692538,-0.10033738,0.80685765,0.17670816,0.03009331,-0.03499054,-0.28806892,0.18058422,-0.02042802,-0.09936648,0.17277972,-0.11259401,-0.02548653,-0.26769727,-0.40925887,-0.02581747,-0.49098557,1.1953125,0.04816969,0.69343174,-0.09500419,0.27616963,1.0917969,0.43311182,0.29468513,0.01428617,0.31630465,0.31459385,-0.5213976,-0.351552,0.00579497,0.02746829,0.1753748,0.3574975,-0.467179,-0.22359884,0.19428454,-0.17387325,-0.38822287,-0.47566965,-0.00787717,0.19473659,0.19187507,-0.450625,-0.15288018,0.35542947,0.2793457,0.23915043,0.4884407,0.08418363,0.04143379,-0.21078178,0.08667578,0.12594327,0.953125,-0.04013314,-1.046875,0.25287193,-0.01159061,0.05918115,-0.7578125,-0.35822222,0.6513672,-0.23589638,0.15968134,0.06982422,0.05554858,0.7114258,-0.6437988,-0.6969866,-0.22511017,-0.12698029,-0.44626912,-0.6006434,-0.16106962,-0.43162647,0.08224533,0.02641744,-0.13326985,-0.13086367,0.2939181,0.26355496,0.05430156,-0.6097075,-0.14012319,-0.16600323,0.31643358,0.4773137,-0.10306453,0.04772345,0.0379642,-0.5015869,-0.2109423,0.5585312,-0.1420892,-0.20013241,-0.03895302,-0.0462331,0.2959754,0.09544644,-1.3203125,-0.11031882,0.10006132,-0.24221608,-0.00756301,0.8828125,-0.32224467,0.13471548,0.46777344,-0.09176365,0.4094071,1.1171875,0.11008131,0.48973992,-0.3934278,-0.00480637,0.20412385,-0.13180634,-0.06280695,0.80429685,-0.1420411,0.244615,-0.03351626,0.6464844,0.20119403,0.07933032,0.12695953,-0.03069257,0.33984375,-0.24172129,-0.21672064,-0.1248844,0.19774108,0.11443412,0.62119657,-0.02871192,0.13524146,0.4007981,0.05311718,0.48794156,-0.0400863,0.12258726,0.34226865,0.0522687,0.02132825,-0.43757233,-0.16939022,-0.27834302,0.1420861,-0.10108186,-0.12939839,-0.11381374,0.3339118,-0.05288323,0.3877622,-0.65789473,-0.00926689,-1.40625,-0.5092448,0.16362709,-0.05576178,0.63727677,-0.03514973,0.7795139,0.1537096,-0.24106185,-0.2830569,-0.5320445,0.2483201,0.57990056,-0.6017187,-0.3028963,0.00866291,0.28714922,0.4656011,0.02246954,0.52480996,0.2675613,-0.17475916,-0.20453735,-0.07641883,-0.30274758,-0.38244048,0.10539664,0.75811297,-0.3478091,0.11473794,0.2889571,-0.3866789,-0.28887713,0.2980917,-0.47210285,-0.6778646,0.22954124,-0.09935905,-0.37794483,0.46493253,0.34189865},{0.771875024,0.172885939,0.0647277161,-0.0389920883,0.0338267423,-0.341748774,0.0510197729,0.0193513315,0.106249414,0.0857015029,-0.145479038,-0.460889578,0.117450818,0.220737547,0.409332275,0.137714431,0.0429613627,0.111327261,-0.405207217,0.654296875,-0.107647173,0.198765576,-0.306767762,0.114010677,-0.0449428186,-0.825892866,-0.240738243,0.49421981,0.125527546,-0.00103493512,-0.0886433497,0.145014599,0.141118824,0.276471585,0.207086399,-1.03515625,-0.0888512582,-0.138143644,0.0959251747,-0.209969521,0.0436081775,0.390511781,0.326202065,-0.0468509383,-0.0404132381,-0.725097656,-0.390534163,-0.13189128,0.117118932,0.0427989028,-0.0856865346,-0.192343339,-1.0546875,-0.612343729,-0.304731876,-0.0306732878,0.146003217,0.439085156,-0.087681599,-0.484610319,0.105157681,0.127919599,0.135665059,-0.161609992,-0.113060236,1.203125,0.0341590904,-0.175340921,-0.0324042737,0.100285582,0.315468758,0.875,-0.0332001187,0.103040479,-0.308555692,-0.582157254,0.0614123754,-0.292817295,0.76953125,0.380833834,0.177620605,0.121363401,-0.38753587,0.0881315321,0.805859387,-0.143025383,0.0649424344,0.140138015,-0.157226562,0.0962236598,-0.163105294,-0.227003351,0.294871539,0.146019295,0.300695211,-0.531300724,-0.203551739,0.258826375,0.45024246,0.0663469806,0.236800656,0.370983899,0.0358814523,0.446220934,0.538702726,-0.663058043,0.390008211,0.30089274,0.209947973,0.0858884454,0.259650737,0.363031417,0.620028436,0.152868733,-0.80859375,-0.235394344,-1.015625,0.0521176159,0.265583068,0.0413895324,-0.298739344,-0.464285702,-0.261565953,-0.228033096,0.357361883,0.214856431,0.0734405816,-0.265487671,-0.231917232,-0.117017865,-0.315446734,-0.141151458,0.158137292,0.515885413,-0.436295271,-0.465494782,0.0463895686,-0.134814531,0.13136223,0.755280674,-0.690625012,-0.0059810346,-0.401474953,0.466400594,0.0683745742,-0.169942558,-0.496538937,0.158679277,-0.55837971,-0.182080388,0.270513117,0.11127983,-0.0983789414,0.26369068,-0.235364914,0.251614094,-0.0828155428,0.766666651,0.828125,-0.121839255,-0.963541687,0.108388945,0.217801765,0.321098834,0.167962477,-0.260753423,0.133759335,-0.0483236797,0.32090044,0.102527834,0.46528101,-0.248810872,0.245064989,0.99609375,-0.141621619,-0.383967459,-0.301669031,0.0564667508,-0.390646577,-0.130836025,0.0795620531,0.0243984722,-0.328103989,-0.103533678,0.241755247,0.212865725,0.88671875,0.230551451,0.0599430613,0.32511127,-0.0832893699,0.538194418,0.219633296,0.85546875,0.0232756138,0.113277309,-0.0356721878,-0.402192682,-0.160572112,0.626116097,0.777064741,0.490285784,0.160243735,0.0451243632,0.0665900558,-0.355552346,-0.135742188,-0.163593352,-0.0847241282,-0.188993573,0.285218447,-0.257658541,-1.2109375,0.150900349,-0.235838383,0.125531942,-0.592824817,0.0766233578,0.152231187,-0.511515856,-0.117911324,-0.00547201512,0.25781709,-0.077889502,0.0742468014,0.21278505,-0.0725105405,0.156785652,-0.124588892,0.0337833539,-0.0522755049,0.19718495,-0.304589182,-0.02560216,0.0961819217,0.217274025,0.0353663936,0.164565176,-0.204547882,0.0817503184,-0.0353985094,-0.731297374,-0.0623014271,-1.2890625,0.295963913,-0.0856402665,-0.0676197037,0.527442038,0.0734695196,0.054973565,0.266522586,0.036142353,0.0598830953,-0.149360195,-0.0227314383,0.0302738529,-0.572529554,0.591264188,0.94921875,-0.165047899,-0.252983451,0.0683566183,-0.202603593,0.454873741,0.082739152,0.558505952,-0.138139933,-0.488376528,-0.0884035006,-0.0197494011,-0.301683635,0.072014913,-0.135731727,0.0930456743,-0.445091397,-0.00312824547,0.0707833022,-0.267602593,-0.0515242219,0.312415838,-0.11305926,-0.554332376,0.214828447,-0.0647289529,0.121097974,0.210288942,0.43736726,0.115205109,0.145495474,0.634982646,-0.0291119702,0.408185363,-0.0252846461,0.0895418078,0.170852259,-0.548643887,-0.340729892,-0.256722391,-0.239353374,-0.0993136838},{0.606085539,-0.291036963,0.201730996,-0.105215773,-0.465775251,-0.263704211,0.0120952427,0.315424681,-0.284300089,0.414957434,0.471012533,-0.749813974,-0.31241861,0.318266898,0.0126381656,-0.0483540595,0.137810633,0.733537972,-0.190910921,0.0497702584,0.14651233,-0.166069284,-0.236328125,-0.833984375,-0.205455214,0.0302559324,-0.829101562,0.7578125,-0.8828125,-0.78400737,-0.534948468,0.0486576557,-0.196236417,-0.242587864,-0.540726244,-0.085190326,-0.0669072792,0.268496871,0.120851748,0.662500024,0.222184703,-0.615781248,0.483189166,-0.0710799694,0.281230211,-0.392537951,-0.0651858151,-0.615885437,-0.880468726,-0.145991892,0.403835237,0.521454334,0.0296719763,-0.921875,-0.334635407,0.0671341866,0.080794625,0.156491071,0.236257464,-0.432350844,-0.115459472,-0.555175781,-0.150339782,-0.460996687,-0.226024657,-0.0212809239,-0.0293935016,0.442243308,-0.162630826,0.0629242733,-0.165060669,-0.14800401,-0.0582653396,0.226043969,0.0670660362,0.731249988,0.0809772387,0.0476108305,0.437729776,-0.0712479576,0.212892845,0.0638164282,0.248562858,-0.129398137,0.183020756,-0.8125,0.0805574581,-0.410818905,-0.12185128,-0.378614753,-0.210863844,-0.150807574,-1.03125,0.50029695,-0.303662986,0.366851479,0.379889101,-0.0712724552,0.506058693,-0.231976554,0.435720146,0.594460249,0.0501018055,0.293056726,0.156205729,0.0122897783,-0.00307694357,0.023484353,-0.977864563,0.247032493,-0.190865189,0.0628418624,-0.0197379813,-0.172311082,-0.118185028,1.2890625,0.084964253,-0.311559081,0.127405331,0.194320917,-0.810546875,-0.248794496,0.00262462767,0.149842069,-0.380839437,0.246571645,-0.156236976,-0.097807914,-0.328297645,0.253757507,-0.465396523,0.124825813,-0.4029769,0.27715987,0.39057222,0.0193192735,-0.253795534,0.21381931,0.31150052,0.478589088,-0.481326222,0.822265625,-0.492102593,-0.189394027,0.0279023889,0.354406923,0.00190415187,0.033484295,0.736718774,0.289676875,-0.00850874931,0.159195259,-1.08854163,-0.176793441,0.176738203,-0.162609547,-0.199161157,0.363195091,0.426728219,-0.693489611,0.0905619487,-0.212935448,0.236818776,-0.216767728,0.202208191,-0.128482297,-0.385937512,-0.105187617,-0.206523925,-0.0152922617,-0.0275687668,-0.328009367,0.32227543,-0.176719636,0.361957759,0.496463269,-0.466637433,-0.644151449,-0.3065871,0.450750619,0.212873861,0.232884303,-0.629882812,-0.15818359,0.409232467,-0.153800815,-0.743164062,0.0888631642,0.410948813,0.101278961,-0.495256692,-0.0401564017,0.115996487,0.225521669,-0.0869588479,-0.0127684157,0.115281247,-0.231433481,-0.253011078,-0.0864138082,-0.0349353366,0.554401696,-0.461425781,0.160178825,0.18265523,0.223536268,-0.0871504769,0.0181289967,-0.461906135,0.00483770762,-0.652264059,-0.341737092,-0.122288756,-0.317326307,-0.355334789,0.00559862657,-0.503036201,0.120795429,-0.0717678517,-0.238243505,-0.382994801,-0.427246094,-0.300764561,-0.603966355,-0.390783787,-0.196233049,0.861328125,0.22554718,-0.619037807,0.283318669,0.0935298875,0.0891051441,0.238194495,0.887695312,-0.502979755,-0.59358722,0.550657213,-0.414997011,0.351627618,-0.261625737,0.631396472,-0.0483037047,-0.0230594892,-0.200636342,-0.0427240431,-0.622721374,-0.464069247,0.0284317266,-0.93359375,-0.136736274,0.351278991,0.0161043685,2.66140501e-06,0.183096692,0.0518081225,-0.0336961113,-0.731026769,0.260614276,0.0588752404,-0.382687837,0.240612313,-0.235445395,0.410013348,-0.460227281,-0.283189505,-0.0797761604,-0.412035078,0.0401327163,-0.729580939,0.0710252523,-0.587719321,-0.163493872,-0.169383839,0.389559656,0.141609341,0.8828125,0.174666941,-0.417484134,-0.0775864571,0.125761598,0.579345703,-0.0547721647,0.125758141,-0.242739737,0.17384471,0.661458313,-0.0623219498,1.4453125,0.768310547,0.101051927,0.311495066,0.0808068514,-0.150925145,0.0116813788,-0.00256346725,-0.0764384866,0.252990931,-0.280199796,-0.0400739387,0.162644818},{-0.33898744,-0.1284526,0.09819165,-0.3039493,0.37262836,-0.05039823,-0.3318329,-0.07592621,0.06279693,0.4978312,-0.03332561,-0.13915533,-0.26073655,-0.57421875,-0.03869343,-0.13752805,0.24032924,0.1543438,-0.01456309,-0.26266453,0.77708334,-0.38186234,0.42579347,0.5908203,0.25871497,0.32984138,-0.19829743,0.24649465,0.00173632,-0.45790905,-0.70814735,-0.33465385,0.32598022,0.12787665,-0.2568702,0.6597222,0.14313036,-0.30854762,0.36140513,-0.04112207,-0.35023373,0.28709552,-0.17082821,-0.51585937,0.07810822,0.20501333,-0.0287787,0.08206255,-0.14504871,0.01278406,-0.06421424,0.01956951,-0.4355782,-0.50346124,0.00669988,-0.1199449,0.7890625,0.27142563,-0.44717786,0.18946336,-0.00203679,0.19967031,0.04010266,-0.10910908,0.35047507,-0.34193516,0.3476373,0.11284061,0.39081818,-0.23526278,0.668773,-0.03359688,-0.7545573,-0.07053328,-0.22557975,-0.16643138,-0.7425426,-0.2607987,0.38384885,-0.00416198,-0.4550973,0.47953126,0.17960627,0.34086913,0.03782138,0.3495654,-0.08935933,0.46080786,-0.32391295,0.06073186,-0.14702833,-0.42387548,0.2607422,0.16114174,-0.17575277,-0.05137338,-0.08904961,-0.22214523,-0.0042906,-0.48336792,-0.02170239,0.2557519,0.07471259,-0.828125,0.39039218,0.4386719,0.64453125,0.7405895,0.39666384,0.29801568,-0.36613283,-0.07759977,-0.39714354,0.22359459,0.17138731,-0.1479547,0.3319699,-0.6621094,0.5547537,-0.10890821,0.28040776,-0.15138303,0.09065651,0.6457741,0.2851141,0.5816406,-0.65024036,0.2109091,0.00901079,-0.603125,-0.01365465,-0.22899261,0.07688061,0.39898354,-0.1733601,-0.14596036,0.12935965,0.46293604,-0.16215119,-0.07295037,0.37103906,0.26946467,-0.17330249,0.02267445,0.84765625,0.13722283,0.6796875,0.19384626,-0.3398496,-1.090625,0.23143435,-0.7220262,-0.24165258,0.04260483,0.32899305,0.765625,-0.14646803,-0.05740767,-0.6251028,0.22013833,0.88671875,-0.31150296,-0.09175448,-0.4153491,0.04855153,-0.5014613,-0.05309824,-1.5078125,0.43658856,-0.09307104,-0.30274752,0.17135265,0.14797501,-0.6557617,0.03771489,0.22501071,0.04675725,-0.25195312,0.5806108,0.29405525,0.04522355,-0.48891765,0.03887014,-0.00482977,0.07476153,0.00259922,0.02983855,0.8256836,-0.1958833,-0.04780325,0.5661569,-0.1252276,-0.98046875,0.09255597,0.4738093,0.40325713,0.02700117,0.48052227,0.07178993,0.23098601,0.04949185,0.11972111,-0.06172522,-0.02549823,-0.07630537,-0.145558,0.29663667,0.17570329,-0.41312462,0.28322348,-0.5192472,0.03169706,0.8300781,0.07544004,-1.3984375,-0.26461038,0.01978414,0.09526874,-0.5906661,-0.57674634,-0.28218818,0.23476917,0.523391,-0.37871093,0.44036156,0.16402537,0.03354646,-0.46160385,0.10355888,0.40931374,-0.00759281,0.11180271,0.07955994,-0.44010416,0.17237702,-0.01151502,-0.01626549,-0.17045948,0.2733851,0.15428887,-0.484375,-0.27739355,0.18407777,-0.322145,-0.35140535,-0.2538468,0.58496094,0.29891756,-0.06170622,0.20011455,-0.06663768,-0.12976323,-0.03868532,0.10692777,0.03186077,-0.2998231,0.5323989,-0.13966614,-0.31636775,-0.12465221,0.3552529,0.8541667,-0.2329834,0.38867188,0.18361479,-0.3658088,0.5132123,-0.5865017,0.0834991,-0.8229167,0.11716739,0.0949251,0.131769,-0.26163548,0.3817769,-0.12841365,0.39132518,0.27344337,-0.4387101,-0.6349432,-0.41317996,-0.37585986,0.09084888,0.05663291,-0.47227514,-0.08740234,0.33282328,-0.400595,-0.04517494,-0.25975746,0.2392043,0.53134084,0.04074419,0.15919355,-0.0596016,0.41401488,-0.07275005,-0.02690361,-0.18070138,0.14162332},{0.074405618,-0.219285265,-0.385567278,0.409135312,-0.0782395825,0.12251249,-0.0475837253,-1.1328125,-0.0566158481,0.0317421556,0.0424369052,0.310363233,0.239764497,0.144096196,-0.511336923,0.573795199,0.698567688,-0.0295333974,0.306531578,0.212824792,-0.25014323,-1.0703125,-0.347947329,0.364107579,0.229492188,0.094158031,0.003147827,-0.0792855546,0.32027328,-0.162114382,0.319390804,-1.0546875,-0.953125,-0.161172822,0.342009932,0.356308103,0.775390625,0.230475828,-0.051119931,0.0656687245,0.091313079,0.225543603,-0.0255784523,0.105470866,-0.366155922,0.47345525,-0.208001688,0.262756824,0.140579134,-0.572737098,-0.444166929,0.609619141,0.184535488,0.91796875,0.135693669,0.455878913,-0.0347192399,-0.900390625,0.205080032,-0.226062104,-0.265664548,-0.0927468315,0.465016097,0.650390625,-0.0296715572,0.528825402,0.0935052857,0.0627325252,0.453330606,0.895312488,0.593462765,0.299737871,0.426584393,-0.334135711,-0.0917353258,0.54802388,-0.171762928,0.159165964,-0.455974638,-0.0858959109,-0.403953612,-0.132354647,-0.473675281,-0.0188919529,0.306580424,-0.0197752491,-0.0538285635,0.868389428,-0.100814186,-0.131285906,0.683203101,-0.249291211,-0.0606901422,0.0625550374,0.623697937,-0.355395496,-0.411979169,-0.483323306,-0.293802589,0.043825347,0.172923952,-0.543238163,-0.291888773,-0.568229139,-0.544704854,-0.0174917933,0.0930238366,0.363358289,0.748437524,0.756696403,-0.210878506,-0.292850643,0.0548334606,-0.518197417,0.826450884,0.168872297,-0.143126413,-0.0776570365,0.45044592,-0.0671273097,0.41550833,-0.0964611545,0.017605707,-0.201162457,-0.674316406,-0.704993188,0.39752394,0.0452829003,-1.1171875,0.196232274,0.763671875,0.141621381,1.0234375,0.015266696,0.154211119,0.0773461834,0.347668171,-0.609095991,0.21432887,-0.418666303,0.20743826,0.354600698,-0.312453598,-0.0659444183,-0.0993041992,0.121181972,-0.343736798,-0.29401809,0.158655331,-0.294980466,-0.0425121747,0.8671875,0.0238160416,0.233957291,0.715909064,0.0549327284,0.37649852,-0.566171885,-0.54284668,0.0964968875,0.00789533928,0.144060925,-0.0505953319,-0.323137671,-0.0815898478,-1.4765625,0.458024949,0.348403037,-0.256807834,0.27438134,-0.427655786,0.324106067,-0.0729784518,0.237161294,-0.325212151,-0.116707161,0.00841843896,0.320293546,-0.155277163,0.382828921,0.493706584,-0.208084643,0.655598938,0.415051758,-0.145955399,0.0920221731,-0.28903839,0.20124127,-0.33972013,0.293921947,-0.0477253757,0.0983294398,-0.0214662682,0.00149158784,-0.233879328,0.0724828169,-0.286044687,-0.452485472,0.483182847,-0.494378805,-0.446462333,0.354379058,-0.181107402,0.638454854,0.98828125,-0.45999822,-0.160666138,0.105926469,0.00986266788,-0.254056484,0.112540953,0.136229753,-0.0878879279,0.299857944,-0.720170438,0.320289791,0.79296875,-0.161576167,0.242173448,0.0675997585,-0.436465025,-0.134809375,0.889322937,-0.180142,0.496346503,0.0129925357,-0.134286657,0.107646137,-0.34109804,0.0994060561,0.00584370783,-0.38390395,-0.117731959,-0.298670292,-0.306726664,0.47564894,-0.0861499831,-0.383734107,-0.41172725,0.115233824,0.433656752,-0.0915040299,0.00555444974,-0.687167525,0.84765625,-0.0539409518,0.48828125,-0.0173679907,0.107399411,-0.0407753326,-0.193826422,-0.173850983,-0.475640804,-0.0571774878,0.508018076,-0.60534668,0.16744715,-0.26171875,-0.226466715,0.149325132,-0.0776555538,0.358472973,-0.0354289524,-0.0388037227,-0.487141937,0.376835644,0.634635389,0.322240263,0.105451569,-0.450974762,0.137660727,0.214307547,-0.0666144788,-0.0596801266,-0.0810806006,0.070065394,0.111748032,-0.0279994179,-0.123551816,0.455014795,0.149398357,0.00124292378,0.238213673,0.686848938,-0.000719740638,-0.423061401,-0.226953119,0.649348974,-0.0268112458,0.0688624755,0.354682595,-0.846354187,0.0167601313,0.198269308,0.367196023,-0.0160113815,0.213835031,-0.157741502,0.0981646478,0.108639978},{0.0388610773,0.00451327953,0.735491097,0.101545557,-0.243648052,0.366184533,0.252937973,-0.87890625,0.279404432,-0.0165554993,-0.284103453,-0.0730349794,-0.21280551,0.530939579,0.00157360174,-0.0255072229,-0.00538583845,0.578089833,-0.0576268695,-0.0520970114,0.551003218,-0.324177384,0.202169403,-0.169461071,0.130378604,0.391861975,-0.414861113,-0.474656999,0.463194013,0.187906414,0.386393219,0.0678889006,-0.0218155533,-0.130888715,-0.0553066619,0.0808031932,-0.660807312,0.149901018,0.620781243,-0.116427884,-0.721679688,-0.226536661,0.738011837,0.311584115,0.248345062,-0.302772909,-0.26762116,0.48448661,-0.596936703,-0.861979187,-0.252876639,0.0695644692,-0.00627097627,-0.309587002,0.384677261,-0.330964088,-0.302627265,0.202112839,0.75,-0.199152634,-0.649110973,-0.116479069,-0.177147195,0.399044305,-0.0451495349,-0.438203603,0.0705524459,-0.376785725,-0.0864246413,-0.355365962,-0.0324657187,-0.875,0.872070312,-0.0487906523,-0.486405373,-0.291999072,-0.0555819832,-0.436469197,0.0915475786,0.337630719,-0.0876494572,-0.0501443185,-0.236658081,0.390553325,0.630629599,0.431709558,-0.0370954312,-0.14487578,0.156767845,0.312374711,0.0149304112,0.155212998,-0.156180635,0.00325297425,-0.151798427,-0.921093762,0.0363610871,-0.253924042,-0.116919257,-0.345673084,0.0391797796,-0.066977188,0.205568105,0.593261719,-0.0449360199,-0.365278363,0.0574357584,0.238792777,0.289040446,0.140156046,0.0957200974,0.21824263,0.515625,0.131328553,-0.406020224,0.0215420295,0.304600686,-0.542562902,-0.318403959,-0.294888556,-0.442185014,-0.201611727,-0.0397898145,-0.275375038,0.672048628,-0.00101449364,-0.361219615,-0.0656991079,-0.0695952773,-0.0944819748,0.332697898,0.0972523764,-0.18804431,0.169923797,0.121558301,-0.398729563,0.285051018,0.892578125,0.246136576,0.419949293,-0.103759766,0.0426963903,-0.263812125,0.238752693,-0.234934136,-0.0429305099,-0.40519312,0.0678777993,0.105529696,0.544084847,-0.104403198,0.244681686,0.119593963,0.422847748,0.13911365,0.428753406,0.428730458,0.0351281799,-0.430526018,0.356483757,0.13031739,0.120570466,-0.16404973,0.0785215124,-0.104525074,-0.321343988,0.0526428483,-0.378664941,-0.527432501,0.445363909,-0.275502235,0.118162006,-0.0901159868,0.340631574,-0.0176429711,-0.166022062,-0.0535659045,-0.367133707,-0.0361259356,1.09375,0.592968762,-0.343719006,-0.0533162616,-0.12057054,0.461882561,0.298754871,-0.195788831,-0.138713077,-0.217265755,0.154746965,-0.160655722,-0.00282893586,0.142523423,-0.0465913229,-0.041466523,-0.405695409,-0.100623578,0.0245975144,0.0385896601,0.37793532,-0.337836981,0.0730272681,-0.11205443,0.487745702,-0.0373453274,-0.0459011607,0.448213756,-0.464496255,0.225459829,0.0810343921,-0.75379467,-0.205537573,-0.229953706,0.257734388,-0.403579563,0.0642219484,-0.107621588,-0.633112967,-0.416503906,-0.166043594,0.376953125,1.2890625,0.595920146,0.03940925,0.194378525,-0.229447559,-0.212325424,0.201649874,-0.201566443,-0.399403095,0.11859522,-0.00452114176,0.110363372,-0.148825526,-0.262780726,-0.100600317,-0.265610248,-0.610390604,0.114219464,0.00480166078,0.194802105,-0.351617604,0.92578125,0.0922140703,0.0067377477,-1.1328125,-0.141625792,0.42585212,0.279230386,-0.415185094,-0.14412348,-0.500421703,-0.16878967,0.0864030272,0.168945312,0.059486419,0.113547012,-0.0778602883,-0.167408943,-0.273580521,0.519339144,-0.0984176099,-0.0754917189,-0.165034249,1.11328125,-0.3092902,-0.119063303,-0.230029911,-0.832465291,-0.225099802,0.380967885,0.827713788,0.116455942,0.0177171286,0.715576172,-0.10427966,-0.343761981,-0.0120957214,0.202205583,0.0102280965,0.0700088218,-0.103995696,0.19529587,-0.211908519,0.19146952,-0.244053736,0.164983585,-0.123707019,0.0766708851,-0.291129172,0.0676316768,0.880859375,-0.0486371107,-0.398158491,-0.183620527,0.635546863,0.543554664,-0.0673436821,0.415883094,-0.554481924},{-0.0910845399,0.101061381,0.307420552,0.262715042,-0.211432815,0.297696561,0.604492188,-0.284160852,0.249764666,0.237866729,-0.415736616,0.880208313,-0.349354625,0.123923391,0.0531168617,-0.240345985,0.281307578,-0.00879997853,0.111320533,-0.13865602,0.443604797,-0.0670973733,-0.189380869,0.149415925,0.430961281,-0.193836659,0.261805564,-0.201977924,-0.403796673,-0.316445738,0.00780911325,0.0120830219,0.11049775,0.0533113815,-0.716238856,0.0117303338,-0.424447417,0.207053408,0.492742598,-0.276346624,0.351522952,-0.252948612,0.419852674,0.161657482,-0.766462028,-1.0,0.293856531,0.237264886,0.381692916,-0.00114563061,-0.326164216,-0.842075884,0.106710941,0.225598618,0.202004611,0.0780881494,-0.547209799,-0.179183468,-0.227480963,0.0787964761,-0.406359434,0.355539978,-0.430664062,0.483935535,0.125077948,-0.0712997019,0.538161039,0.177748382,-0.206594959,0.196732566,0.1279466,0.197247222,-0.0264853947,0.176737115,-0.368257552,-0.147977829,-0.146450445,0.328910917,-0.176306203,-0.609035313,-0.124582753,-0.782031238,0.118713774,0.43734464,-0.199623004,0.71484375,0.27923122,0.159723461,-0.280228496,-0.233309656,0.231500089,-0.94140625,-0.0786296353,0.264669329,-0.339833885,-0.375959426,0.144575015,0.160262451,-0.0388019383,0.162234098,-0.239313409,-0.466225237,0.233865768,0.338833839,0.221707463,0.0365946405,-0.329175532,-0.171285957,0.110819124,-0.97265625,-0.150379494,0.469495267,-0.127998441,0.107140154,0.0436849669,0.0512916297,-0.287023306,-0.0577254444,-0.164460167,-0.143083662,-0.180699602,1.21875,-0.220694527,0.206049591,0.10207279,-0.156256482,0.0604977198,0.730587125,-0.774218738,0.122298695,-0.96484375,-0.438298345,-0.0504054949,-0.365519673,-1.015625,0.0494235829,-0.207498297,-0.821614563,-0.0769266188,0.636526644,-1.21875,-0.625139534,0.289742619,-0.731387854,0.183981001,0.806857646,0.245124876,0.00462419912,-0.24118568,-0.253812253,0.177267835,-0.644576132,-0.677027941,0.00860911887,-0.329038322,-0.579989374,-0.00996555202,-0.0265269075,-0.380965918,0.0331259444,-0.0921091139,0.0432455763,-0.0281154886,0.185050681,-0.7578125,0.123031043,0.00939494185,-0.250610352,0.128915489,-0.594089687,-0.252903163,0.49035275,-0.527162075,0.0298839603,0.246071041,0.256773919,0.440064102,0.203541234,0.0224543456,0.338613659,-0.305715472,-0.184560061,-0.0220037829,0.360238016,-0.134310558,-0.306562811,0.246540174,0.0275260191,0.8984375,0.109321803,-0.143579558,-0.353588641,0.0150165996,0.294736654,0.100807585,0.324236333,-0.0656306222,0.0766699314,0.373081744,0.281284034,0.159193516,-0.560156226,0.421247214,0.116181493,0.471484363,-0.0901136473,0.145106375,0.122288197,-0.163034856,-0.314400703,-0.0487953238,-0.44231683,-0.388689876,-0.0725833699,-0.0913301706,-0.587239563,0.458370537,-0.187927246,0.0553167276,0.279392153,0.284124672,-0.0369709954,0.0341698267,-0.261490583,-0.460501522,-0.0703049228,0.00521892728,0.0592553467,0.247075051,-0.224047348,0.188967094,1.1875,0.0288681276,-0.498637348,0.044336997,-0.152333617,0.34385246,0.0553556606,-1.078125,0.274322927,0.529296875,-0.209428266,0.146508962,-0.0258566439,-0.525859356,0.151336178,-0.217297316,0.390560299,-0.38079983,-0.87890625,-0.0328264572,0.154746294,0.015320221,0.316532016,0.315466553,0.547453701,0.00228767679,-0.410169542,-0.0439694785,0.0818245336,0.064457953,-0.581321001,0.375919104,0.0986658335,0.241321266,-0.0350571573,0.0729795024,-0.330042213,-0.606933594,-0.387681812,0.327139795,-0.0316121541,-0.495028406,0.0776043907,0.0373618193,0.177754715,-0.11112152,0.112615846,0.150327906,-0.223529801,0.0903604925,-0.142494425,-0.572656274,0.120323271,0.0595622808,-0.519171476,-0.831250012,0.210523501,0.399475753,-0.228356481,-0.0888919756,0.0962184444,0.782552063,0.29686898,0.584435105,0.0612184182,0.310446531,-0.93359375,0.209914967,-0.704799116},{-0.710503459,0.424764544,0.9921875,0.437490612,0.124575503,-0.651977539,-0.0279881265,-0.163064703,0.52730304,0.0688361377,-0.0159547403,-0.56640625,-0.0783625841,0.263723642,-0.467931807,-0.080347009,0.384753853,0.375872672,-1.125,-0.869531274,-0.433224827,-0.22609292,0.0812748,0.426691443,-0.619042993,-0.0465717725,-0.727734387,0.291961342,0.240219161,-0.0240041129,-0.467193156,-0.363422096,0.188975692,-0.170429513,-0.0737422407,0.148870021,-0.315759599,-0.114808522,-0.285957754,-0.186466098,0.238719895,0.600428402,0.586480021,-0.228523538,-0.546621323,-0.334958583,-0.101144932,-0.0253980607,0.0326522551,-0.465784132,-0.412009209,-0.0110078752,-0.228628919,0.247471541,-0.115981698,-0.261796564,0.0160914063,-0.195804492,0.0412435792,0.55859375,-0.145501196,-0.344706625,-0.271470159,-0.511241019,0.392112553,0.380699694,0.9140625,-0.339869112,-0.353490025,-0.55483216,-0.618815124,0.395331919,-0.229525045,-0.469661444,-0.205147877,-0.0925268829,-0.123162642,-0.0820319578,0.00652588019,-0.107394196,-0.070796676,0.0383076482,0.311336905,-0.802734375,-0.700683594,-0.120111376,0.139102608,0.274393678,-0.197654784,0.0751890615,-0.262710094,-0.0624032952,-0.0959548429,0.306417286,-0.49434039,0.0759197176,0.873046875,0.357324839,0.172328532,-0.370169967,-0.341904789,-0.145976141,0.392567396,-0.352542907,-0.0285548437,-0.202653751,0.126938328,-0.530348539,0.639648438,-0.0976243541,0.0310324337,-0.536024332,-0.473840922,-0.0509098247,-0.596875012,0.198590189,0.133404404,0.362340868,0.218688875,-0.0491607003,0.110096306,-0.822265625,0.278203696,-0.1582122,-0.0438739955,-0.016700862,-0.282183379,-0.193331063,0.188459694,0.0212002005,-0.12787579,0.207949907,0.313267827,0.194917947,0.234282359,-0.000372126495,-0.0668996572,0.377840906,-0.251536131,0.568189561,-0.0398679152,0.0281332415,0.0289404932,-0.21639885,0.34087643,0.178222656,0.190018073,-0.0627081543,0.134689122,0.00817359891,-0.269335926,-0.179690093,-0.14647378,0.214295596,-0.122553386,-0.144537359,0.505363345,-0.648995519,-0.120594509,-0.193801358,-0.30568248,0.877929688,1.0,-0.550712705,0.272485226,-0.0278860517,0.213769659,0.190341517,0.0319555178,-0.161110297,-0.00895749778,0.0587130487,1.1640625,0.389685154,-0.552933693,-0.415766865,0.195791319,0.270857632,-0.355477929,-0.0779048502,-0.472711265,-0.90234375,-0.00639282493,0.540564895,0.143024236,-0.120801106,0.59908855,-0.0607616082,-0.665736616,-0.433670342,-0.244570181,0.225059375,-0.667075872,0.544802308,0.601943612,0.0457770005,-0.361233771,-0.0662099943,0.0544165298,-0.214376882,-0.186035156,0.136703357,-0.00829116628,0.0944488421,0.157121241,-0.291129559,-0.246477008,-0.300873607,0.179677591,-0.583488822,-0.998046875,0.236337081,-0.264726013,-0.467599064,0.780691981,-0.167960048,-0.140638784,-0.310624301,-0.0341719538,-0.0273829829,-0.308555812,0.490234375,0.271454483,-0.122328043,-0.0629045963,-0.333012193,-0.387648821,-0.0389914662,-0.0688552633,-0.333984375,0.420227796,0.055160962,0.220218897,0.497691751,-0.0954796225,0.169959366,-0.182606265,-0.293012589,0.0964490697,-0.0275503509,0.213845164,-0.311530679,0.391463846,-0.112019233,0.0890585929,0.178687483,0.162580892,-0.0362184979,-0.265687406,-0.0611508489,0.195880622,0.0998706073,0.170896858,0.398257822,0.28912887,-0.265658468,-0.0619727969,-0.103744924,-0.615131557,0.660546899,-0.221799269,-0.199611813,0.0494476371,-0.0499083512,-0.335854143,0.0506469496,0.282351941,0.0225122813,-0.542485476,-0.0769424587,-0.0501470044,-0.0539698862,0.0136768939,0.470360696,0.572265625,-0.212417468,0.218315497,-0.87890625,0.170805722,-0.473810375,-0.511899054,-0.228093773,-1.1484375,0.175770044,-0.0317989178,0.014674888,-0.00338622252,-0.149467617,-0.214284122,0.793247759,-0.517712831,-0.126421243,-0.680175781,-0.316498756,-0.320336044,0.469443887,-0.056276001,-0.72931987,0.0648924261,-0.355514884},{0.00332706864,0.214366227,0.444055021,0.60165441,0.204639614,-0.195338011,0.0355847776,-0.390483588,0.133708537,0.0507775471,-0.5246346,-0.194864914,0.0203285925,0.583797097,0.760416687,-0.110126317,-0.580829322,0.458954006,-0.755022347,-0.0666699633,0.491073877,-0.00644263299,0.385822445,0.225555226,0.664620519,-0.156789482,-0.172379926,0.139145806,-0.186523438,-0.343760878,0.176188916,-0.167954475,-0.0612359568,-0.499716491,0.1013427,-0.231957525,-0.377384871,-0.250598967,0.428614974,0.849609375,0.292972177,-0.0613625087,0.10449411,0.283155501,-0.058646176,-0.250523567,0.0822598338,0.198242188,-0.115008138,0.485930264,-0.229426011,-0.0305203106,0.559606493,-0.0859594569,-0.0179836154,1.2109375,0.0380552299,-0.597248137,-0.330037445,-0.108389869,0.52391386,-0.0746441185,0.187964231,-0.0478163958,0.25292629,0.104944333,-0.252973527,-0.527845979,-0.0526054837,-0.310370207,-0.111110203,-0.0930206478,0.29690221,0.054112222,-1.2734375,0.106150657,-0.00645048963,0.00244318531,-0.128413588,0.0989320427,-0.168405324,-0.265701026,0.0966186523,0.113322951,0.00919060968,0.252944797,0.583705366,-0.0523467585,0.86328125,0.216723353,0.200696856,-0.574075818,-0.0362864845,-0.80078125,-0.0121786296,0.218767986,0.0815606415,-0.169347346,0.285061479,0.231586844,-0.433180302,-0.20654504,-0.0539574735,0.517415345,0.0400556885,-0.00448797969,-0.431589216,0.125555187,0.0927862972,-0.0306584369,0.185017273,0.182612732,0.0967089981,0.194761515,0.0284065008,0.383536309,0.18316336,-0.364984721,1.65625,-0.171816483,-0.0226967223,-0.540624976,-0.414631695,-0.00145361654,-0.0971447155,0.0182650723,0.88671875,0.248792648,-0.212872535,-0.0322081186,0.113032907,0.260662019,-0.0873400271,0.248870075,-0.0312161148,0.252890438,0.666992188,-0.00787123758,0.0126247536,0.03651952,0.00715249777,-0.121077575,-0.8671875,-0.291080117,-0.295734376,0.558327436,0.111338139,-0.0362459496,-0.0644556209,-0.475606412,0.016033981,-0.250109911,-0.550154805,0.684933007,0.402932793,-0.122310333,0.105022602,0.0541008823,0.594815314,0.748046875,0.020894343,1.2265625,0.213480949,-0.470629424,-0.240744993,-0.0423757024,-0.011207738,0.14403607,-0.0832820311,-0.0640156865,0.0622382239,-0.103076115,-0.0212296396,-0.441450149,0.162625551,-0.238236353,0.119114563,-0.0158746038,0.191919476,0.133332744,-0.233304083,0.0817959383,0.193912864,0.196289062,-0.0264908914,0.558845758,-0.368143111,-0.119596459,0.357441902,-0.796875,0.136187032,-0.490004599,-0.355483651,-0.431870401,-0.294868618,0.805588961,-0.333018422,-1.0546875,-0.0202859882,-0.149873316,0.358321041,-0.196554512,0.0118380496,0.38594082,-0.544531226,0.200695336,-0.105911091,0.0785345659,0.0773085728,-0.0766849071,-0.0108801061,0.104194321,0.0463937707,-0.0881525129,-0.507739484,-0.0387060829,-0.189040706,0.547971487,0.12626712,-0.204136118,-0.0277193617,0.35242936,0.35458985,0.298746318,0.749310672,0.142512113,-0.805664062,-0.147394568,-0.0335576795,0.360322475,-0.223064899,-0.0969218239,0.135248378,0.212942943,-0.163615793,0.318302929,0.26161167,-0.00990255736,-0.100764245,0.606933594,0.388541222,0.196444318,0.128913254,-0.35054177,-0.482153326,0.100134835,-0.625600934,0.0506143458,-0.0976343453,0.538504481,0.070287928,-0.566217244,0.26069954,0.342875868,-0.127959415,-0.523103774,-0.500248015,-0.238271028,-0.102225505,-0.0301411282,-0.383428365,-0.0754648671,0.712565124,0.122602582,-0.083698988,0.000911198382,0.213821098,-0.114015661,0.289025635,-0.288096368,-0.42567274,-0.707812488,0.0388684645,0.737165153,0.0951868296,-0.390586555,0.0477933586,0.346663266,0.358798683,-0.0695736632,0.403287381,-0.87109375,0.517517745,-1.046875,0.47748065,-0.32229948,-0.16846098,0.0624321997,-0.156707078,-0.0298593435,-0.24217771,-0.105480276,-0.374880821,0.254028589,-0.120864883,1.1328125,-0.159148484,0.173782066,-0.114254639,0.41394648},{-0.232831851,-0.646728516,-0.222104013,0.234883651,0.0805786923,-0.162182093,-0.508042276,-0.126935259,-0.0712781325,-0.0394683965,-0.370188206,0.0728903636,-0.00786294788,0.340868115,0.443440765,0.406506568,-0.0251665059,1.02734375,-0.283258766,-0.162087366,0.0712758228,-0.629261374,-0.11668735,0.748697937,0.292015314,0.0669005439,-0.570243955,-0.534143507,0.0529634506,-0.519872069,-0.163057432,-0.0256146807,-0.427562803,-0.0292629935,-0.153839901,-0.0294415094,0.0534783565,1.1328125,0.25581038,-0.137659937,0.177737787,0.0550769642,0.5445894,-0.116664402,-0.011599795,0.0175949689,0.708007812,-0.109868295,0.229009181,-0.312561423,-0.500084102,-0.388732165,0.90234375,-0.232907653,0.746582031,0.151314631,-0.00159255846,-0.250544041,0.593593776,0.147957101,-0.457044542,0.312407404,-0.352542371,0.297683537,-0.184487134,-0.00444655912,-0.294943273,-0.0227912813,0.246070355,-0.0376186632,0.101611279,0.179660842,-0.215900093,0.44231981,-0.688616097,-0.190498129,-0.200731039,-0.665527344,-0.0880379528,0.0622958317,-0.209495112,0.433421403,0.142996892,0.831163168,0.202555165,-0.0620289221,-0.163552925,-0.275641739,0.469637781,-0.486953139,0.520426452,0.0327518545,0.186974153,0.043965321,0.474218756,-0.419912338,0.321194679,-0.0321566947,-0.0599897988,0.198242188,-0.876953125,0.433119684,-0.250508636,-0.660900295,0.193783879,0.0538212098,0.558169186,-0.81640625,-0.0974207297,0.0378822759,-0.076168932,0.244640365,0.286189198,0.318374574,0.245599851,0.554241061,-0.23101823,-0.253890514,0.066659838,-0.923828125,0.0124010639,-0.311635256,0.665798604,0.84765625,-0.0128343785,-0.411080033,-0.111053675,0.0272282939,0.209423274,-0.220222294,-0.149369121,0.0044885003,-0.537019789,0.047516644,0.203668594,0.0981172696,0.111793794,-0.0523013659,0.0828055069,0.158739761,-0.791015625,-0.143018827,0.0129996585,0.343600303,-0.514229894,-0.309478194,-0.643807888,-0.252033949,-0.970703125,-0.146933615,0.52734375,-0.414907873,0.183552697,-0.0856451616,-0.0236281101,-0.740234375,0.187579036,0.497384787,0.183066413,-0.359348595,0.183082908,-0.66796875,-0.0719974935,0.0581131652,0.479266822,0.520751953,-0.258558393,0.261799842,-0.436514646,-0.108933643,0.0230445042,-0.0891119838,0.119889975,0.0494113043,0.341574937,-0.0166608263,0.501729906,-0.202147081,-0.224577993,-0.148941651,-0.586312056,-0.758680582,0.086714156,-0.0225241408,0.200111762,0.419558495,0.292830795,0.475786984,-0.121269584,-0.181177333,0.9140625,-0.21773684,-0.420795649,-0.331060529,0.540081501,0.351608872,0.421845168,-0.30161199,0.145006329,-0.0111524938,-0.108879909,-0.660511374,0.138677895,0.208914086,-0.0109724002,0.275222093,0.23337093,-0.228866354,-0.241173059,0.0303557422,-0.308586836,0.265641898,-0.0284011737,0.428716511,0.172383562,0.254858315,-0.052581206,-0.0744789392,-0.296855956,0.0140020298,-0.125346094,0.625781238,-0.0649437904,0.442444831,-0.33199057,-0.0488030761,-0.342816442,-0.9609375,-0.145985201,0.221205667,-0.131458193,-0.592694283,1.0,-0.0462872535,0.224575698,0.271399766,0.160646722,-0.196834117,0.0173242148,-0.90625,0.475363225,-0.0714985728,-0.123940468,0.0448244736,-0.293700486,0.0274475943,-0.0403884128,0.348610967,-0.449241459,0.287764341,0.402063131,-0.286149681,0.222208321,-0.011882931,-0.145594031,-0.426763654,-0.422641218,-0.0328276083,0.112778105,0.107404076,-0.110822923,-0.00063991372,0.186075762,0.5385378,0.040294759,-0.132771075,-0.314316303,0.0845263377,0.376251221,-0.199737683,-0.214277446,-0.176228836,0.0593046285,-0.0265051406,0.423809081,-0.320281088,0.135213032,-0.0430707857,-0.144547254,0.059088733,-0.462576151,0.415527344,0.0216690395,-0.0202635489,0.258791983,0.0490940623,0.380615234,0.357570112,0.172326595,0.0313429274,-0.131356537,-0.0495190285,-0.317392349,-0.540586889,-0.0231161229,0.205434248,-0.461502254,0.0147079825,1.01093745,-0.126532555},{-0.277292848,-0.083214514,0.179117501,-0.00335875456,0.229492188,0.490002334,0.370973557,-0.0483305492,0.0296715461,0.158717737,-0.448301971,-0.311478734,-0.282249421,-0.124439798,0.359478891,-0.181587636,0.329043388,0.0124422573,0.0397762582,-0.146029726,-0.0599123016,0.338602453,-0.208028153,-0.161633328,0.150851414,0.00385521376,0.132341802,0.700625002,0.289963245,-0.0940277055,0.0530744642,-0.130842939,-0.156801894,-0.214374647,0.257840604,-0.371956289,0.0257012565,-0.040134117,0.290064842,-0.346674293,-0.0805687755,-0.199618652,0.0431839451,-0.180193067,-0.310684055,-0.0671216249,-0.361249685,0.176683068,0.0729605556,0.0729703754,0.101919673,-0.218729571,-0.193269297,-0.57119143,0.600328922,-0.14899309,-0.162669227,-0.228052065,0.13862367,0.121328503,-0.181110993,0.233840793,-0.515762866,0.192948058,0.224640384,0.15039432,-0.597900391,0.329133064,-0.63671875,-0.11226099,0.15869084,-0.0132935187,-0.487267137,0.27532208,-0.459827781,-0.0416108295,-0.021206975,-0.0366313346,-0.010654849,0.309477806,-0.52786845,0.585007429,0.0364748947,0.518045783,0.367136091,-0.669433594,-0.675000012,0.0120411189,-0.182622254,-0.0708227679,-0.353273213,0.0771461055,-0.38082692,1.08333337,0.931640625,0.115981117,0.715624988,-1.0625,0.362317055,-0.0661836192,0.15131478,0.183107734,0.0886356682,0.193828732,-0.139710292,0.265708268,-0.290809691,-0.143057197,0.320340097,-0.346455216,-0.0562654696,0.528868139,0.146964386,0.0741879344,-0.144010767,-0.458274156,-0.0446903519,0.174729571,0.341730058,0.12324813,-0.521354139,0.4082748,-0.611364961,-0.401588082,-0.217788965,-0.0835006908,0.041253265,0.622301161,-0.00960965268,-0.274624348,-0.21432732,-0.0661407188,0.535271168,-0.0281976648,-0.389584005,0.112577915,-0.355633229,-0.246531948,-0.444925934,-0.201157346,-0.207328334,-0.735351562,-0.154802442,0.317336679,0.379963875,0.289099187,0.465724021,-0.372207224,-0.0274915136,-0.8359375,-0.155236766,-0.315488636,-0.269475341,0.326312393,0.490263522,-0.000391056092,-0.0387237743,-0.176260754,-0.737847209,-0.225057632,-0.497558594,-0.00333272759,-0.0148971081,-0.158176497,0.571451843,0.168958724,0.327140301,-0.617838562,-0.341771692,-0.0277367402,0.193264872,-0.0434674211,0.372284353,0.695591509,0.108377658,0.415527344,0.300768524,-0.184071064,0.10789039,-0.5234375,-1.1796875,0.164020881,-0.209460482,-0.2910344,-0.649639428,0.223630831,-0.032918632,-0.587590158,0.304806679,-0.135701075,0.0255665202,-0.550611436,-0.556361616,0.150864154,-0.621995211,-0.561414957,-0.0100044664,-0.0226570386,-0.35939911,-0.185477316,0.094220452,0.189444795,-0.0815063044,-0.0842310935,-0.172945634,0.314192712,-0.196160734,0.0454101562,-0.00630736863,-1.3515625,0.142647147,-0.16849342,0.0756694898,-0.83203125,-0.225596488,-0.126974791,-0.260758847,0.467728645,0.360434532,-0.0027961398,-0.349778771,-0.290965229,-0.387198478,0.875,0.00867704861,-0.0240957737,0.169383705,0.333759397,0.21821937,-0.122522809,-0.107858092,-0.0786070004,-0.270620644,0.0271404404,0.609531224,0.137711048,-0.356789172,-0.207554415,0.229958102,-0.29879868,0.00557632698,0.235879436,-0.305612296,-0.392642915,-0.167445585,0.479196936,-0.295808166,0.905381918,0.335953116,0.425742179,-0.773737967,-0.157115325,0.647499979,0.0510499217,-0.350743443,0.202057779,-0.120585077,0.399962544,0.0327831917,0.39611432,-0.0964602306,0.571751654,0.233398438,0.0416752212,-0.152810872,-0.263671875,-0.0507717431,-1.1328125,-0.306573123,-0.122323819,-0.0360321589,-0.008947636,-0.436212718,0.128435597,0.0584947243,-0.1923244,-0.252992183,-0.291936517,-0.605298936,1.1875,-0.0756604001,0.143017948,-0.246603981,-0.275313914,-0.0545670018,0.15279001,-0.0333241224,0.135194644,-0.254790395,0.561985195,0.0513172001,0.257692933,-0.456091255,-0.144097224,0.0837425888,0.0383286141,0.379954278,0.124598421,0.505637407,-0.0368527435},{0.409234554,0.149839908,0.0234369561,0.828125,-0.0248701163,-0.000563126698,0.209481448,0.110282436,-0.325162023,-0.181187809,-0.100555509,0.150275737,-0.640285313,-0.468900234,-0.176200807,0.502041101,0.517336726,0.497511506,0.26766029,0.00019061676,-0.205020189,0.438961536,-0.065207094,-0.0768982768,-0.87890625,-0.0612715669,-0.0761896893,0.417930961,-0.217755497,0.145009235,-0.25487116,-0.188476562,-0.259754926,0.483900398,-0.33702454,0.10382013,-0.273563504,-0.434558809,-0.213309154,0.357590795,0.111609749,-0.298660725,0.664531231,0.347712576,-0.485085219,0.033956334,0.124714077,-0.157239273,0.0522993803,0.133776605,0.0409639403,-0.706186652,-0.0791234821,0.149323717,-0.186570823,-0.393479556,-0.0565139614,-0.272390664,0.295948088,0.420541167,0.464175105,-0.690104187,0.000415823481,-0.277161539,0.721354187,-0.0396688245,0.0528444424,-0.0452057533,-0.32414642,0.21976079,0.347704411,0.0627929717,0.0693028495,0.0128350826,-0.401338339,0.173733622,0.257905722,0.602570593,0.0324736238,-0.256869107,0.251563907,-0.639973938,0.353280306,1.02734375,0.0646835417,-0.18693243,0.00645298092,0.0801164508,-0.00510891201,-0.580078125,-0.658203125,0.676897347,0.0448608398,0.643188477,-0.0283242464,0.447761208,0.0516813844,0.109135449,0.106903836,-0.154767111,-0.095715858,-0.0858877003,-0.127440467,0.0303885657,-0.265513569,-0.283107966,0.149893492,0.539024949,-0.0276885666,-0.0069197421,0.0480021089,0.102384508,-0.33203125,0.0236738324,-0.0441223718,-0.087157093,-0.0971278325,0.039745409,-0.0320323966,0.0584675707,-0.347607076,0.0460196584,0.386244416,-0.0357407145,-0.125382453,-0.554869175,0.125988856,-0.224134177,-0.645937502,-0.441029757,0.00789941009,0.0592353977,-0.098803252,0.124417379,-0.491922259,0.884765625,-0.320356488,0.332794458,-0.498934656,0.225107744,0.558416188,-0.391446292,-0.0393086039,0.273472369,0.00906147808,0.196244672,-0.562566221,0.125947386,-0.265645444,-0.438926429,0.142557144,-0.357312262,0.14150846,0.122822329,-0.0594059564,0.624565959,0.287131578,0.227494881,0.106732048,-0.307611167,-0.152832031,-0.398461312,0.747514188,0.100921869,-0.203214288,0.38755241,0.183603585,0.0260209814,0.0734912902,0.249270737,0.208545133,0.0145216687,-0.155277088,0.0125868274,-0.0481237732,0.0795767754,0.398384422,-0.304729432,0.00291895354,0.00441793306,-0.151810005,-0.166975886,-0.821093738,0.073490493,-0.108376339,0.162635118,-0.0504354127,-0.103510365,-0.154327467,-0.158312231,0.0517640188,-0.400566399,-0.325173408,-0.291860431,0.314512312,-0.272546947,0.0108627127,0.169457778,-0.073954992,-0.0314866565,-0.242585957,-1.0,-0.371812344,-0.220199287,-0.422150731,0.723632812,-0.332783163,-0.0276727751,-0.104921788,0.0496288501,-0.19186151,0.318141758,-0.32035175,0.98828125,-0.0187089406,-0.144465908,-0.0393963344,0.0572391711,0.609375,-0.267675549,0.0881041512,0.0484875888,-0.321315676,0.0861404464,-0.142045617,0.304548502,-0.242643222,-0.627554059,0.323128343,-0.258796364,-0.480842143,0.261665791,0.349165469,-0.177684203,-0.0358621031,-0.527264059,-0.448988974,-0.874023438,0.549045146,-0.0132312188,0.714164376,-0.157682031,0.724431813,0.573242188,-0.193300247,-0.365473092,0.231666803,0.250646174,-0.723958313,-0.0934699625,-0.316549599,-0.366109908,-0.0573713705,-0.217354521,0.414945424,0.302719235,0.064661257,-0.476484388,0.254895836,0.304661274,0.300662309,0.0528361239,-0.516120136,-0.130878106,-0.420676053,0.137741044,-0.487513959,0.171960354,0.321693361,0.239232957,0.0779456049,0.143996492,-0.29491505,0.567604184,0.0218918975,-0.0200944301,-0.953125,0.161641672,0.71875,-0.00846164208,0.281352341,-0.034676563,0.560036063,0.336681545,-0.198629677,-0.290851533,-0.119622454,-0.306449711,-0.353379369,0.351442695,-0.440448582,-0.0870980322,0.118843414,0.469304264,-0.235871106,-0.701450884,0.0583567284,0.446529657,-0.137118608,0.186495975},{-0.19242115,0.12842777,0.40533373,0.14052974,0.494902,0.09496371,0.52359694,0.5025,0.17137605,0.20020802,0.3563058,0.04928084,-0.09715546,0.63806576,-0.13185443,1.0546875,-0.0949707,0.85112846,0.17770115,0.14749421,0.03169085,0.09370513,-0.17819576,-0.3522853,0.33290985,0.25491768,-0.2752798,0.26956257,-0.6785714,-0.05542869,-0.05996059,-0.4978652,-0.2401421,0.09773079,0.5444336,-0.32809782,0.4931228,-0.397197,-0.25145015,-0.1606194,0.05944268,0.25397137,0.30268297,0.38392857,0.10131343,-0.69331175,0.33439127,-0.00947139,-0.18600284,0.4304307,-0.62513953,-0.279302,-0.51589334,0.07981692,-0.4286573,-0.35271496,0.2085419,-0.41886112,-0.6833496,-0.74348956,0.03381176,0.16799879,0.79296875,-0.0901226,-0.5096055,-0.5369466,-0.09764736,-0.12987918,0.5306641,0.07813888,0.08496799,0.47179458,0.05068763,-0.02795575,-0.77088344,-0.669368,-0.19243164,0.80859375,-0.05013174,0.46411443,0.14744401,-0.18945822,0.43616617,-0.2773188,-0.10641055,-0.09568112,-0.5269097,-0.22482227,0.20119317,-0.15626456,-0.30369413,-0.02781569,-0.22025068,0.17235051,0.10417026,-0.07786579,-0.11327235,-0.3337856,0.23627353,-0.3017893,0.3396218,0.14898424,0.01700396,0.07522334,0.65625,-0.1470174,-0.12107369,-0.19823271,-0.04712023,1.171875,-0.24416333,-0.11909436,-0.05067317,-0.28808594,0.18901296,0.28125575,0.7703125,0.28130946,0.49671835,-0.08617604,0.06031237,0.2872194,-0.13380276,-0.12696858,0.02303964,-0.2770738,-0.08229409,-0.17043182,-0.09759973,0.8703125,0.03915272,-0.31338605,-0.11599661,-0.17514053,-0.58866006,-0.03624809,0.44609374,0.03417395,-0.6360677,0.05356966,-0.46032262,0.30815154,0.5523437,-0.44331953,-0.06252182,0.38271904,-0.27836066,-0.08000837,-0.01213708,0.0495634,0.33695242,-0.5915561,-0.30463633,-0.10277075,0.3620279,0.03562866,-0.10079344,-0.01015248,-0.08129255,0.05075279,0.21002333,0.17812443,-0.4977022,-0.9746094,-0.13432392,0.21726869,-0.11870433,-0.08790012,-0.13234581,-0.35726458,0.1156861,0.2753575,-0.340801,-0.20362629,-0.8079928,0.19858088,-0.54909205,0.0026242,-0.12935798,-0.11256216,0.13083725,-0.40526715,0.4658482,-0.74715906,-0.193858,-0.02218438,-0.2598726,0.4189453,-0.10546217,-0.00918871,-0.06290591,-0.44493312,0.18984163,-0.25395542,0.04564811,0.03386127,0.23960152,-0.08595808,0.33398438,0.01637525,-0.06588624,0.2646511,-0.13182859,-0.00461647,0.20999286,0.08490301,0.4932042,-0.1401834,-0.21920002,0.49084926,0.16302763,0.05944434,-0.10401634,-0.19273096,-0.5539407,-0.75,0.10151088,-0.5086301,0.32513136,0.14503227,-0.52726716,0.01025377,-0.16550726,0.3299916,0.17383696,0.18989082,0.6102628,0.2891482,-1.0234375,0.50355905,-0.07173797,0.15428528,0.06136954,-0.86796874,-0.06565018,-0.02877379,0.4522287,0.01577131,-0.12344253,0.04047172,-0.37764084,-0.11255448,0.30940565,-0.21916088,0.62282985,0.20507812,-0.49729303,-0.35048738,0.01231798,-0.07597678,0.15284142,0.11768992,0.1562731,-0.34659943,0.26171452,-0.09666492,0.02999747,0.10587946,-0.37308383,-0.00248037,0.21584015,0.0132379,-0.0081301,0.07706131,-0.00390938,-0.0719884,-0.18853152,-0.2587718,0.01985469,0.00420824,0.19530334,0.12184729,0.15910026,-0.32898164,0.12553416,-0.15029024,0.5711806,0.13283128,0.40292767,-0.33374485,0.3455592,0.10426663,-0.09966528,-0.34255797,0.5958534,0.11672442,0.04732246,-0.02883946,-0.00875158,0.08760865,0.16598177,0.06276954,-0.04365685,-0.44013757,0.32007852,0.02659202,-0.00645087,0.33849454,0.29106772,0.311518},{-0.0375698209,0.0467480011,0.614300251,0.0421218164,-0.735156238,0.141643137,-0.10351634,0.229385793,0.152374148,-0.325055808,0.000192974825,0.0363435224,-0.235313013,-0.151747599,0.260637403,0.336998314,-0.292941153,0.140601441,-0.0269216821,0.021991387,0.233885378,0.121423915,0.0333059058,0.0996033996,-0.496814549,0.664496541,0.338867188,0.156701624,0.213890597,-0.221212059,-0.137097389,-0.641433179,-0.139159411,0.827343762,-0.128888071,-0.184104025,0.35540092,0.499664307,0.0372143686,0.0229688771,0.623774529,-0.180230528,-0.0830107033,0.0280900113,0.00574834086,-0.200697184,-0.695126474,0.0153539376,-0.377073944,0.153298393,-0.0368686393,-1.2421875,0.212374553,-0.0649646223,0.0260590464,-0.476872534,0.259683102,-0.487260789,-0.258704484,-0.319350839,-0.37035045,0.384810179,-0.212328106,-0.317418993,-0.0859080926,0.0375842303,-0.201131418,-0.0644553378,-0.442310184,-0.695963562,0.0327097103,-0.283140838,0.195761934,1.03125,-0.0996275023,0.0196705479,0.18212983,0.0786711946,0.302862227,-0.124352686,-0.148902178,0.191838354,0.0214336496,0.257755041,-0.00706027215,0.132824987,0.0340002514,-0.173856959,-0.670898438,0.134327039,0.150343314,0.0013812026,-0.260704875,0.0181988869,-0.446597457,-0.697265625,0.397542328,-0.107171424,-0.196769074,-0.546547174,0.822265625,-0.2529535,0.607572138,0.113424331,-0.357413232,0.323016822,0.013896605,0.110329233,0.062319465,0.0112459138,-0.0370985679,-0.228538692,0.115718827,-0.0634592995,1.25,-0.185591415,-0.535288692,-0.00297086174,0.365136176,0.321241766,-0.663323462,0.243123472,0.0395769887,0.127454922,0.589579821,0.166030556,-0.0538120233,0.428997397,-0.146050125,-0.513281226,0.178736642,-1.15625,-0.646829069,0.348529875,0.52255857,-0.317469746,0.96484375,-0.185546875,0.0663954765,0.0905947536,0.188467205,0.109308086,0.479492188,0.560131311,-0.144590691,0.626775563,-0.0628305823,0.270443648,-0.626439154,-0.304765791,0.209959358,-0.850651026,0.321296751,0.601148903,-0.0790842921,0.114046723,0.0465054624,-0.26066196,0.213784859,-0.140656188,-0.0714973211,-0.0488318726,0.00446550548,-0.179210022,-1.0625,-0.176213756,0.103279501,-0.0683507919,0.0971146673,0.191953585,0.0941992179,-0.063234061,0.690755188,-0.373259395,-0.282192677,0.364090115,0.141082928,-0.155781537,0.149365917,0.0697956458,-0.0813043788,-0.0284592528,-0.494419634,-0.226471081,-0.352539062,-0.0706000775,-1.0234375,-0.262677222,-0.4190045,-0.285919875,-0.184498265,-0.129416078,0.326029241,-0.135737956,0.140658617,-0.162095562,0.0853874162,-0.572307169,0.10524185,-1.4140625,0.00405429257,-0.0275802445,-0.560818136,0.232451364,-0.327183723,0.16742374,0.395608842,-0.0910670236,-0.0323968492,-0.688476562,-0.109362833,-0.0219449662,0.266709477,-0.285110831,-0.281271189,-0.332125485,0.333759755,-0.378800929,0.495799452,-0.349513829,-0.163098246,0.410888672,0.419726551,0.362049073,-0.187470615,0.0664318204,-0.439105034,0.423828125,-0.465494782,0.451155186,0.841796875,0.284219444,-0.527010262,-0.071728386,0.264537632,0.673437476,-0.25388056,0.265460283,0.207546115,-0.139152572,-0.241261274,0.00558508281,0.0505004562,0.406534106,-0.120660692,0.441768974,-0.109868988,-0.273261189,0.0487805493,-0.356460989,0.122071519,-0.0505256914,0.834635437,0.256795168,-0.163497671,0.138519362,-0.331797808,-0.284101307,-0.146073341,0.0146994479,-0.0282120612,0.127471507,0.0210400503,-0.55433768,-0.0985877663,-0.100366727,-0.646040499,-0.302642256,0.447860062,0.90234375,-0.063377358,-0.255897671,-0.263724536,0.355445594,-0.0270349383,-0.0791135877,-0.0342170708,-0.063099727,-0.694921851,0.398525715,-0.0446957015,0.552571595,0.054541897,-0.0330794267,-0.684765637,0.0276145767,0.620383501,-0.9609375,-0.0859049782,-0.129430845,-0.815290153,0.366215944,-0.175745651,-0.676649332,-0.153807208,0.252895772,0.850260437,0.0602679104,0.0327211991,-0.153832272},{0.18704845,-0.24403992,-0.09229929,0.00921457,-0.43088484,-0.5586648,0.15971665,-0.18702567,-0.0033123,0.9661458,0.05970174,-0.2939744,0.27334595,-0.3604966,-0.09524954,0.0405378,-0.10053064,-0.35753286,-0.14356628,-0.08614977,0.26079544,0.48725727,0.35741505,-0.3933753,-0.37871504,-0.25577915,-0.47261578,0.54284406,0.59241074,-0.28703582,-0.39537194,0.2743859,-0.07737552,-0.436394,0.16998963,-0.26951507,-1.0546875,0.66341144,0.05150343,0.24360324,0.26748708,0.1582877,0.2539398,0.08573265,0.1537662,0.12783694,0.18168344,-0.21329561,-0.45294416,0.6518229,0.1479325,-0.52628154,0.00817695,0.43694574,0.2314106,-0.22420834,-0.42752743,0.09732295,0.07323753,0.21427639,0.11426394,0.25768307,0.07447957,0.03660348,-0.60309106,0.20358005,0.6875,-0.07865129,-0.06932854,0.5463934,-0.14207965,-0.34780094,-0.09100371,-0.1947681,-0.25682294,-0.31637737,0.33381727,-0.12204545,-0.22562958,0.5584162,0.00843661,-0.11543793,-0.00204445,0.07414442,-0.26160124,-0.20942873,0.11522755,0.5174817,0.09914353,0.0803353,-0.10401426,-0.17331539,-0.2422295,-0.01833636,0.170845,0.4157986,-0.06809433,0.50007814,0.3379242,0.00532939,0.5513021,0.08540872,-0.20646603,0.921875,0.46089536,-0.5876359,-0.22104907,-0.10512423,-0.47825986,-0.6660156,-0.18358232,0.1421201,-0.14794561,-0.19576511,0.46969193,-0.7734375,0.3708738,-0.10989787,-0.36909485,0.08038875,-1.109375,0.0084149,-0.11212158,-0.17431094,-0.4286694,0.03256691,-0.1366933,-0.2977099,-0.04642388,0.3025829,0.47602695,0.45861003,-0.21389414,-0.41399395,0.04745755,0.442214,-0.08444753,0.7063802,-0.11347427,0.26559377,0.40923715,-0.90527344,0.06466997,-0.53929687,-0.08227873,1.0677084,-0.03575774,0.48747796,0.31426623,-0.16787384,0.3086173,0.19421838,0.2519445,0.02627831,0.10443168,0.34070542,0.08768332,0.0033629,-0.39453772,-0.10525363,0.57827526,-0.02127773,0.07274353,0.2695541,-0.26854232,-0.34374544,-0.17572887,0.03991963,-0.31242386,0.02492223,-0.09112146,0.35633576,-0.19280969,0.5701427,-0.5007115,-0.06218633,-0.23373306,-0.32711178,-1.0364584,0.2577775,0.37531072,0.31817403,-0.15958633,-0.13628122,0.01627197,0.02941208,-0.17385595,-0.38942224,-0.07276731,0.06956107,0.08475947,0.6614583,0.8144531,-0.6435547,0.02953645,-0.01954247,-0.25056225,0.5553125,0.16709425,-0.78203124,0.32823512,0.77790177,-0.22954322,0.26366502,-0.2694397,0.47586945,0.03131109,0.14697474,-0.20010918,-0.03735837,-0.0905982,-1.0585938,0.6326069,0.20261128,0.21530317,-0.11036962,-0.17188571,-0.05600009,0.0761628,-0.08565897,0.65625,0.13715498,0.7609375,0.16600509,-0.1237201,0.3337909,0.43810704,0.3768371,0.5230758,-0.15909526,-0.77734375,0.22250177,0.55675554,0.10569679,-0.18112127,-0.19287953,-0.77678573,0.64453125,-0.06226915,-0.08083861,0.2920709,0.04681151,0.06516784,-0.07709478,-0.00501193,-0.21332663,-0.2407889,-0.2006369,0.48441255,-0.45388862,0.9082031,0.14201893,0.41964048,0.02928753,-0.5155165,-0.1249008,-0.1630773,0.20355639,0.78515625,-0.09867131,-0.1806934,-0.27340275,0.3074844,-0.02863744,0.20702538,0.3299973,-0.1621011,-0.35929862,-0.2079796,-0.06219228,0.56171876,-0.47338867,0.20995863,-0.04210915,0.45980176,-0.17084605,-0.42843968,0.08563495,-0.39157283,0.15722656,-0.7561384,-0.16841517,0.6396949,0.07644879,-0.30536926,0.24824956,-0.36023802,-0.10276505,-0.12797378,-0.38041,-0.2666633,0.72526044,0.05976513,-0.28223965,-0.48880208,0.10669766,-0.03479593,-0.44898987,0.5585539,0.5966667},{-0.0550713092,0.0149260005,-0.595156252,-0.131791547,-0.204605937,-0.387716323,0.145059764,-0.228606537,-0.105424486,0.314430833,-0.0715619996,-0.228959858,-0.177727163,-0.0835034549,-0.359252512,0.155744448,0.0754497871,0.348568499,0.221659407,-0.107408918,0.000152297755,-0.0842102244,-0.415621579,-0.106929317,-0.343673766,-0.329080641,-0.0224804338,-0.32621479,0.149875343,-0.0441559665,0.186956093,-0.109146684,0.0612293407,-0.0451289751,0.288104028,0.196780488,-0.0137114674,0.116009243,0.189862907,-0.313536942,0.708116293,0.184621617,0.190893412,0.582926452,-0.118408546,-0.425877303,0.480583638,-0.232346952,0.643857777,-0.102818631,-0.209486336,0.120860502,0.466796875,0.0662110299,0.0618203059,0.171378911,-0.893554688,-0.0644314364,-0.0514382757,0.033955615,-0.0530196279,0.0362898856,-0.39350906,0.265497625,0.0377058871,0.126956493,-0.145532295,0.226122439,0.0168984272,0.00810587499,-0.0499198921,-0.0638417527,-0.354316622,-0.698288679,-0.172814757,-0.513605416,0.735156238,-0.986979187,0.194309548,-0.16215913,0.106901824,-0.388863713,-0.31847468,-0.0370152891,-0.0883831531,0.306630522,0.716517866,1.21354163,0.264686555,-0.00848673657,-0.0232961681,-0.350466311,0.139145598,-0.342593849,-0.565429688,-0.0140779084,-0.300548732,-0.000102295009,-0.0749080852,0.416992188,-0.0396470092,0.232440591,0.354459643,0.224589333,-1.0078125,-0.408300787,0.0388353206,0.388723463,-0.608022809,-0.0798667297,0.29388836,-0.08542981,-0.284041196,-0.220809162,0.122850567,-0.640625,-0.0580705926,-0.458672404,-0.0485580564,0.400475532,0.563281238,0.112066671,0.459650218,-0.356347293,-0.249723226,0.14797765,-0.901041687,-0.126730621,0.482314557,0.16796875,-0.0988886431,-0.656020224,0.131391615,0.707899332,0.0297006071,-0.271510661,-0.0494400077,-0.0234957077,-0.783203125,0.0200197939,-0.00641084416,-0.305611789,-0.339781642,0.0624433421,-0.168931633,-0.54838711,0.148913041,0.649414062,-0.215817422,-0.0433556996,0.126954108,0.00594577286,-0.184116066,-0.0346449167,-0.205053717,0.0151279652,0.062953718,0.0722908527,-0.186949462,0.0102157425,0.232289299,-0.147881255,0.325105309,-0.379838198,0.00620556157,-0.1947878,0.811848938,0.314414442,-0.171306908,-0.84375,0.241179928,0.0449408852,0.289146811,0.112778015,-0.149927095,-0.717968762,0.0218295865,0.103724428,0.288992465,-0.265514702,-0.716567099,0.0119960392,0.120828979,-0.499876648,-0.314416617,1.2734375,1.140625,-0.225022003,0.100814506,-0.558919251,0.235301703,-0.265648097,0.442084432,-0.159670874,0.38569212,0.267503113,0.615596056,-0.169873387,0.240584761,0.0834786519,-0.0770664141,0.437482238,-0.0466210097,-0.141155913,0.0420439392,-0.0668740422,-0.285012096,-0.515556455,0.443791747,0.115943044,-0.240188435,-0.386594743,-0.193847656,0.0215297081,-0.111094996,0.150896013,1.03125,-0.229973093,-0.330945075,-0.298991412,-0.0119946096,0.292878956,-0.953125,0.220181376,0.25382036,-0.37716648,-0.15234375,0.00378895295,-0.37902534,0.00490125082,0.230458632,0.696289062,0.41355896,0.587801874,-0.570182264,0.93359375,-0.0536934994,-0.304800183,0.334902346,-0.164505586,0.0298208352,-0.485454351,0.209982365,0.208960563,0.250183254,0.0742132738,0.0934658125,0.46076858,-0.0846985355,-0.250165939,0.315337449,0.341656744,0.313389748,0.0143083744,0.00166654959,0.341887027,-0.107920796,0.224561036,-0.646282315,-0.0659003332,-0.310651511,0.156686246,-0.308616519,0.292925358,0.486328125,-0.566210926,-0.7734375,-0.0502909757,-0.113991663,-0.135219872,-0.176789254,-0.30265829,0.0439346172,-0.135658339,-0.134798974,0.602141201,-0.307635158,-0.202672198,-0.0927649662,0.525422633,-0.30355075,-0.33519727,-0.407518268,-0.492635757,-0.251564234,-0.203589022,-0.324079245,-0.532151461,-0.429468453,1.01269531,-0.208030328,-0.041503001,-0.266614288,-0.0856900141,0.460462421,-0.144498289,-0.0204267502,-0.300695002,-0.0937458873,0.382760912},{-0.16062073,0.264592,0.26956022,-0.80078125,0.2629504,0.32909808,-0.5883789,0.25156763,-0.08965459,0.29487994,-0.08706877,-0.25871176,-0.77783203,0.05677243,-0.15869348,0.05857347,0.17721824,-0.15081695,-0.210469,-0.18512163,-0.01822012,0.06366808,0.15780398,-0.26942316,0.02889086,-1.0286459,-0.21329217,0.6220439,-0.05820151,-0.24559873,-0.36231083,-0.4618798,0.1670017,-0.09567586,-0.08886762,0.03050312,0.16556655,-0.5285838,-0.01019373,-0.25583297,0.12573406,-0.45195943,0.00864782,0.07008889,-0.18048514,-0.23052378,-0.04848684,0.29308155,-0.6626157,0.29981905,-0.2725029,0.04408564,0.3897346,0.16646282,-1.0039062,-0.19821894,-0.09372491,-0.04102083,0.01389272,-0.09301245,0.37851563,0.83203125,0.05458834,0.02200775,0.31631583,-1.140625,-0.11332537,0.6596354,0.05981641,-0.16450621,0.79241073,-0.47704595,-0.1782608,-0.2666339,-0.32903227,-0.12556519,0.03587883,-0.22654583,-0.36334565,-0.4597749,0.12368463,0.02421698,0.57315344,-0.16213205,-0.0223514,-0.00222896,0.18105425,0.04564841,-0.06391915,0.23885113,0.10052264,0.2811357,0.4999219,-0.06609429,0.13626215,0.19281022,0.54278624,-0.05372282,0.04196864,0.26673087,-0.6256893,-0.4288304,-0.4609375,-0.15863091,-0.29963827,-0.10278054,0.91015625,-0.26545838,-0.32028776,-0.45623484,-0.62834823,0.082934,0.30472368,0.39343882,0.33784556,0.32036147,0.56725085,-0.27928954,0.24265641,-0.515625,0.15674487,0.32228655,-0.08229673,0.49063975,0.23921774,-0.4942785,-0.24877095,1.121875,-0.4310268,0.35831508,-0.11551348,0.02082828,-0.23436862,-0.06883533,0.14503753,0.412681,0.2153333,-0.26762602,-0.0551764,0.19094971,-0.06666503,-0.41994432,0.10499832,0.77201706,0.04185884,0.4686215,0.08546184,0.11151712,-0.47455063,0.82161456,-0.12853278,0.5060454,0.09108189,-0.05859281,0.07736292,0.2011516,-0.34366667,0.19776753,0.49648437,-0.8828125,-0.32917026,0.5311849,-0.25778264,0.35547876,-0.5735394,0.2957974,0.6193954,0.23160157,0.2255464,0.21479458,-0.9511719,-0.22101223,0.06741598,0.64575195,-0.11209051,-0.26554832,0.66163427,-0.51371783,0.39958176,-0.03491111,0.02739024,-0.01507002,-0.23437117,-0.31541747,0.11209964,0.0177962,-0.44416544,-0.03577809,0.6565104,0.16889338,0.32904887,0.2016735,0.39728618,-0.07148778,0.17138088,0.15626773,0.35176402,0.40608138,-0.22263774,-0.2065266,-0.05783198,0.29003578,0.34085494,-0.05806154,-0.19916974,0.03480925,0.26741895,0.44666466,0.12282796,-0.11834183,-0.12695837,-0.79052734,0.23619135,-0.17241776,0.00562045,0.28718245,0.050804,-0.11394869,-0.17429177,0.08196295,-0.25056824,0.20988531,0.6497962,-0.32299978,0.09860006,0.27830824,-0.26649746,0.13040766,0.2607957,0.05026396,0.25380912,0.17283793,-0.1805664,0.3096037,0.52328867,0.38977933,0.28317168,-0.5425122,-0.29311118,0.7291667,0.09429807,0.58955437,0.2578485,0.27621657,-0.46210355,-0.33306926,-1.0026041,0.57059604,0.25598267,-0.161596,-0.11841529,0.21531723,0.0444109,0.37403095,0.8411458,-0.1465227,0.33293867,0.08761488,-0.11426301,0.4803325,0.8179687,0.44523245,0.5535857,0.1450692,-0.05735764,-0.05126403,0.91796875,-0.27631488,0.52414775,0.49097842,0.2882045,0.43846938,0.45983243,0.63355154,0.21434031,-0.5606729,-0.19098285,0.00625141,0.46773857,0.14163904,0.04888361,-0.2733521,0.00389085,-0.17237036,0.07688307,-0.8263021,0.12603484,0.85026044,-0.1086108,0.00126568,-0.341743,-0.42894137,0.14639805,-0.20945443,0.1203407,-0.2289936,-0.08985247,-0.22557339,0.11672094,-0.07152971},{0.324144155,-0.158670381,-0.0254565328,0.48026669,-0.345878124,0.247532412,0.00108803296,-0.266545266,-0.222115219,0.215295494,0.28413552,0.239581034,0.473937988,0.200226218,0.564174116,0.642376065,0.0913713723,0.178688139,-0.550280452,-0.0361986235,0.108044356,0.220260546,-0.263805538,-0.486103982,0.0934600383,0.530664086,-0.0419645645,-0.0113136331,-0.285050213,0.29482311,-0.1169025,-0.296931297,-0.79296875,-0.273430377,0.0371871814,-0.110362306,0.0824871212,-0.182111993,0.14158079,0.205106631,0.0173753984,-0.713802099,-0.460123688,-0.0409693979,-0.137166604,-0.367275745,0.0659616292,-0.92578125,-0.69905597,-0.348606765,0.349505663,0.915039062,-0.0336964913,-0.374942213,-0.475237161,-0.0753681585,0.0596919321,0.227867499,0.327078134,-0.123453975,0.13234739,-0.0424937084,0.279153973,0.239253029,-0.71875,0.432018638,-0.407129586,-0.306614339,0.0725236982,0.442501187,0.20753935,0.083748728,0.0788639411,0.125101849,-0.425759166,-0.00228651334,-0.100128353,-0.0544084832,-0.102076478,0.157749072,0.090578109,-0.30278033,-0.170365274,0.00792146102,1.1796875,0.224094078,0.411470503,0.240723312,-0.14597097,-1.0234375,-0.0844719857,0.252313346,-0.496842623,0.404341251,-0.0984310508,0.552187502,0.497444779,-0.306597114,0.0893545523,-0.795052111,0.199161515,0.125171795,0.125061288,-0.180148333,-0.10839396,0.614149332,-0.0742225274,0.212301582,0.0429651067,-0.293078423,-0.163550451,-0.0402261168,-0.0934440717,-0.0822681189,0.355357647,-0.546428561,0.0269248653,-0.179265097,-0.0837342367,-0.393502057,-0.594607472,-0.128535986,-0.513620496,-0.0927694663,-0.341829598,0.045765359,-0.573840737,-0.630208313,0.250478178,-0.0528782606,0.22011888,0.077134341,0.0210256483,-0.239762321,-0.232976019,0.326146692,-0.530752838,-0.0393409207,-0.979166687,1.04394531,-0.28133285,0.609114587,-0.0540937893,0.308588713,-0.86328125,-0.0267622601,0.0275941044,0.365234375,0.177331075,-0.017548142,0.79671222,-0.0523964427,-0.0179673564,-0.615234375,-0.423574656,0.0771749914,0.22981675,-0.328131884,0.244648725,0.121954709,0.0366010927,-0.53125,0.260787547,0.160212293,-0.157211304,-0.20658271,0.0266667996,0.771701396,-0.668308437,-0.0861617252,-0.073947303,-0.00174748665,-0.0082902126,-0.0917912424,-0.674538374,0.0509042293,-0.392301917,-0.11447297,-0.261714518,0.104765162,-0.526623428,-0.301792383,0.0574697554,-0.0611226447,-0.388478696,0.364215344,0.385362417,0.11261674,-0.244255841,-0.0226588938,0.0117199803,-0.0905876681,-0.282191932,-0.195750177,0.348591626,0.295919538,-0.437616259,0.0489474945,-0.93359375,0.17477791,0.0280975811,-0.401204437,0.575683594,-0.26168111,0.398284316,-0.625,0.0875949636,0.347484678,0.141606525,-0.357421875,0.364606589,-0.00478470651,0.299879253,0.0427284837,-0.322315186,0.078566879,0.00847837143,0.368980706,0.00746320235,-1.09375,-0.598074794,-0.218746349,-0.0329555422,0.056039881,0.0406575352,1.3359375,-0.3076756,0.747829854,0.149852261,-0.0791222155,-0.031016944,-0.155767396,0.266491234,-0.0939545408,0.291943669,-0.353459835,0.134283736,0.211836636,0.189469814,0.231440395,0.357282698,-0.219220489,-0.238773346,0.0730099007,0.0462632999,0.286039352,-0.201127782,0.0906335115,0.357655585,-0.0246323403,-0.517074108,-0.0363774337,-0.1179386,0.236798972,-0.0744223595,-0.487209529,0.0490715392,0.454467773,-0.0268971324,0.0413689539,-0.44279325,0.0349072255,0.435989857,-0.272512019,0.0104519948,0.446345896,-0.212419719,-0.176772937,-0.189453125,0.0411654264,0.453811228,0.248829544,-0.102004655,-0.236825183,0.294915706,-0.60283953,0.0273660105,0.186492458,-0.244185641,-0.0317847095,-0.0612234809,0.178204626,0.403204322,0.230495438,-0.0952484161,-0.650505543,-0.0995822176,0.0249499995,0.194868803,0.188449383,0.193316221,0.23144123,-0.501163244,-0.125535429,-0.138128534,0.329999298,0.261768728,0.00454968028,-0.0615637265,0.0642342567},{-0.10719016,0.35427883,0.00341741,0.6492661,0.29278222,0.02639674,-0.85546875,0.03410885,0.3319945,-0.14161256,0.20251977,0.20753205,-0.16260007,0.7106771,0.22809875,0.19581945,0.1484375,-0.26940036,-0.08032328,-0.34547517,0.05619102,-0.25965685,0.29295668,-0.5769231,-0.24131063,-0.40926108,-0.35545078,-0.1449749,-0.02050574,0.03146574,-0.01613967,0.7089844,-0.47919035,-0.6074219,-0.47894078,-0.04712561,-0.10788941,-0.0154669,-0.17825298,-0.08177632,-0.46717247,0.00813532,0.12694483,0.9824219,0.45299184,0.08781011,0.01272872,-0.0516431,0.09055948,-0.3856656,0.00903741,1.3828125,-0.04963877,-0.40703124,0.03785836,-0.30169004,-0.14399333,-0.74902344,0.16945814,0.33284506,-0.23634616,-0.28521845,-0.12990054,-0.81328124,-0.14838748,0.06006008,-0.0839342,0.3944411,0.13184765,0.04590023,0.25479206,0.72699654,0.39050454,0.384271,-0.3486351,0.03717425,0.56488717,0.3591779,0.02183389,0.6308594,-0.05796669,-0.01162319,-0.18796906,-0.17679013,-0.03636496,0.38766688,0.35048375,-0.11263268,-0.17190552,-0.1133048,-0.58251095,-0.7241848,-0.35345528,0.3593397,0.05908395,-0.47103515,0.06862793,0.01811757,-0.22843978,0.9453125,0.02150133,0.26850072,-0.1840715,0.16937448,-0.4677622,-0.0488007,-0.52958775,0.31822997,-0.26763183,-0.0583591,-0.32890263,-0.0247268,-0.19085526,-0.03441694,-0.06957755,0.12459273,-0.2772922,0.14741938,0.01381073,-0.45539123,-0.20408718,0.09545723,0.16595902,-0.30866152,0.39358932,0.28015062,0.4334162,-0.4948408,0.16987072,0.04442086,0.25789446,0.35921225,0.47185203,-0.3319759,-0.0858926,0.13035415,0.02225677,-0.5201613,-0.2694251,-0.33504406,0.25291738,-0.2387779,0.25377384,-0.10714079,0.31540036,-0.360314,0.42048663,-0.11821903,-0.13912614,-0.37499163,0.1952928,0.43070024,-0.1694513,-0.23683852,-0.08986006,0.16112792,-0.30280885,-0.28612113,-0.16357422,0.14500894,-0.45097524,0.7064303,-0.18217985,-0.08705166,0.18110873,0.10279539,0.07860045,0.4025571,0.17137751,0.16987774,-0.7358774,-0.30270714,-0.36979887,0.08860926,0.20646587,-0.2890571,0.76726973,-0.37707385,0.3535315,-0.7949219,-0.27929688,-0.14748067,-0.10085559,-0.4126302,-0.01025525,0.27536657,0.04673577,-0.08375981,0.2492071,0.39433593,0.45914382,-0.16749075,-0.4939737,0.18549831,-0.92578125,0.71484375,0.19864574,0.890625,-0.19672392,0.70870537,0.4784478,0.22646925,-1.1171875,0.07785093,0.00516102,-0.02060779,0.05850329,0.09984359,0.38079533,0.06614958,-0.26066288,-0.6311035,-0.59350586,0.6040153,0.32324713,0.7135417,0.06588608,0.03966513,0.40234375,-0.38178134,0.19621196,-0.17822911,-0.27741912,-0.78222656,-0.9267578,0.10592297,0.19333814,-0.02444855,0.19479936,-0.06122711,-0.290897,0.37026024,-0.05981249,0.13075921,-0.67230904,0.24638733,0.93359375,-0.14701732,1.21875,0.02832129,-0.75390625,-0.24373354,-0.5327524,-0.14943615,-0.39759254,-0.02835256,0.257778,-0.81640625,0.419009,-0.14260265,0.22266664,-0.65671873,0.33777168,-0.39078337,0.632339,0.26967168,0.6791992,-0.15428615,0.57239586,-1.1132812,0.14257541,0.18108995,-0.13578571,-0.44306767,-0.13522479,-0.01827141,-0.5390625,-0.21143924,-0.37499276,-0.09544319,-0.09054624,-0.08742246,-0.02282322,-0.44174728,1.28125,-0.35546,0.25135952,0.42558742,-0.00164021,0.6953125,0.01400372,0.07469594,0.16701908,0.2080374,0.23288059,-0.0681254,-0.45989668,-0.2193233,-0.03404679,0.2304817,0.1312667,-0.06592871,-0.10961968,-0.18842305,0.19623457,0.12193163,-0.5684659,0.6898438,-0.20210056,-0.05085449},{0.093554087,0.615234375,-0.401266158,0.0261509307,-0.881835938,0.655381918,-0.0632401258,-0.331106931,0.308473855,-0.154257491,-0.601822913,-0.329096198,0.217658713,0.167452499,0.0910881981,0.361208022,0.42943114,0.0957072005,0.124152556,-0.220647722,0.125534371,-0.102027826,0.978515625,-0.04948375,-0.260776252,-0.6796875,1.046875,-0.0385856293,0.665865362,-0.143070281,-0.309574068,0.0296695493,0.220236748,-0.386447132,0.806640625,0.452110887,-0.198218942,-0.275421232,-0.771484375,0.162169203,-0.0050192792,-0.55078125,-0.284016937,-0.307521343,0.306649536,-0.62514466,-0.403471172,0.438998908,0.881138384,-0.199762225,0.0219381973,-0.468653709,0.159207717,-0.0493144542,0.306704551,0.317366391,0.156755194,-0.161164135,-0.0132081201,-0.169396996,-0.284179688,0.739149332,0.587545931,-0.232434765,-0.127884939,-0.806640625,-0.136210203,0.248472273,0.383657873,0.735351562,0.431592703,-0.108563252,-0.245009422,0.0854108781,-0.122352399,-0.739728034,-0.0855350494,-0.143099189,0.642187476,-0.211511746,0.287039608,0.362247229,-0.0594490096,0.039193321,0.409873188,0.61833638,0.30859375,-0.82421875,0.127923951,0.195302218,-0.119129315,-0.138699204,-0.0392155871,-0.0484348498,-0.0523556396,0.26165387,0.424718678,0.126888022,0.305611968,-0.333880812,0.483576953,-0.113778234,-0.0795642957,0.76171875,0.0905544385,-0.436605662,0.17000477,-0.293778807,-0.0135435751,0.0788501203,-0.00296721072,0.404114336,0.858398438,0.284194142,-0.00426921714,0.146916285,-0.19284381,-0.389720231,-0.109669857,0.183150917,0.0287023634,-0.0504134707,0.107940987,0.081719704,0.0754102916,-0.626764119,-0.0174992066,0.13966164,-0.267505288,-0.249978185,-0.734375,0.629123271,0.11034447,-0.190399438,0.758789062,-0.227358729,-0.00238023908,-0.316358626,-0.135245636,-0.25638777,0.284198374,-0.356415123,0.384241611,-0.183062434,1.671875,0.217243016,-0.0912801176,-0.103257187,0.00208310597,0.188571423,-0.195231512,0.340812624,0.794921875,-0.497045279,-0.00379019463,-0.0348135531,-0.163130105,-0.414919347,-0.0523521602,-0.169943407,-0.540276587,0.426488906,0.155756086,0.121591099,-0.181625158,-0.422863334,-0.33563289,-0.533572614,0.705295146,-0.0446664207,0.319349557,0.435214847,-0.469117969,-0.0802825987,0.0703378245,-0.314414442,0.0676246658,0.484130859,-0.709517062,-0.324958324,-0.0595642813,0.0568510033,0.0252358317,-0.093885228,0.271569043,-0.22354506,0.150337845,0.533770144,0.116450623,0.189957276,-0.0232590716,-0.341822237,0.0720663071,-0.9765625,-0.393676758,0.245563015,0.290085286,-0.800180316,-0.469331771,0.338004291,0.263668001,0.0482021347,0.648082376,-0.433605522,0.343798578,-0.163575426,0.686523438,-0.108599618,-0.355604172,0.182127774,-0.0654378906,0.469844609,-0.0470441282,0.378989816,-0.0362132415,0.221222952,0.0881172791,0.690378308,0.103748485,0.249774814,-0.0411392041,0.0255913455,-0.437217623,0.390510947,0.293912649,-0.57421875,0.0515426174,0.179602057,0.45587799,0.324006796,0.00839978922,-0.285167783,0.688281238,0.413847655,0.313581079,0.160632297,-0.164148882,-0.0890720487,-0.339928657,-0.50632441,-0.146545932,0.12740843,0.44812572,-0.557812512,0.470440775,0.51259768,-0.0278017558,0.199733913,-0.36897558,0.133776575,-0.102057636,-0.39431262,-0.248454392,0.578248382,0.191865623,-0.630224049,-0.183627427,-0.803710938,0.00719951512,0.208329782,-0.147953838,0.229040638,-0.573964,-0.197274059,0.371757627,0.0905829817,-0.374172866,0.134674355,-0.347556084,0.169465974,0.147959068,0.189005271,0.41638276,0.201651067,-0.00027053908,0.495319873,-0.369210124,-0.238068655,0.0104454467,0.337887198,-0.0175569169,0.346502602,0.184607267,-0.193344846,-1.125,-0.0212960299,0.214324862,0.32208088,0.218756035,-0.0798325539,0.610351562,-0.196242452,0.188498661,-0.000392216985,-0.0410458855,0.752734363,0.0278448369,0.576041639,0.082034491,-0.453080624},{0.05697448,-0.01510008,0.22906718,0.0827843,0.17032152,0.04444931,0.18360941,0.98828125,0.2104366,0.63641036,0.5413021,0.6188616,0.34075448,-0.0353921,-0.38672605,-0.3227539,0.47659427,-0.07982597,0.10574629,0.40589887,-0.35433546,0.25401527,0.32705286,0.69232535,-0.11766214,-0.140112,-0.03165428,0.02145376,-0.5202309,-0.0361384,0.54010415,-0.26468962,0.10280794,-0.11208951,-0.10401379,-0.06979246,-0.50971556,0.29581288,-0.09373981,0.2734135,-0.5436663,-0.10032462,-0.57902646,-0.25578165,0.13917138,-0.51953125,0.20800781,0.09591841,0.41498655,0.35842443,-0.4610067,-0.4296601,0.12537257,0.7769097,0.08737294,0.36896393,0.12745988,0.36506453,-0.3653635,-0.60368544,0.19873047,-0.25654784,-0.11378006,-0.29198512,0.13280275,-0.31834537,-0.16403422,0.7426758,-0.3874243,0.40835795,-0.18746127,0.42002052,-0.07246068,0.02210171,-0.08036637,-0.25683242,-0.29499218,0.2548584,-0.19870335,-0.23685938,0.32122564,-0.44665527,-0.09081665,-0.2417434,0.74776787,-0.04405217,0.1601354,0.7339638,0.53496337,0.6292614,-0.921875,-0.08251292,0.39208984,0.08496792,-0.3716728,-0.0572363,0.19580396,0.1826003,-0.10941051,0.29498923,-0.11549789,0.00231718,0.00284831,0.00787942,-0.08397501,-0.2528054,0.21132748,0.44523385,0.47372463,0.34460136,0.24218333,-0.4802981,0.14304006,-0.7626953,-0.3085205,-0.37423307,0.01233518,0.5876736,0.28809848,-0.00680948,0.08394627,0.3749034,0.05297162,-0.75651044,0.05074852,-0.21094489,-0.38865,0.22120032,-0.2010653,-0.19683263,-0.17182064,-0.18013015,-0.30285606,-0.48295152,0.10309128,0.14500299,-0.28708488,0.12619023,0.48987925,0.3895573,-0.02330543,-0.03022676,-0.11084157,-0.14119327,0.07540958,-0.1796493,0.57070315,0.25288934,-0.09643265,0.21136929,0.29201347,-0.14359258,0.05783305,0.3553876,0.06239903,-0.13823393,0.16358896,-0.36210805,-0.01291062,-0.0596715,0.11186145,0.25390247,1.421875,0.04498616,0.24505633,-0.2271241,-0.26656574,-0.33203822,0.5869565,-0.14547685,0.53299534,0.3947754,-0.03636551,-0.8623047,0.09201971,0.6196733,-0.2181989,-0.39858255,-0.01930379,0.22503148,0.33208972,-0.0546024,-0.17721194,-0.56036264,-0.22703323,-0.05084708,0.11717136,-0.46936765,-0.01901319,0.00569061,0.66796875,0.2558161,0.30370396,0.52912384,-0.07910655,-0.12034576,0.38362068,0.283058,0.5966046,-0.06189942,0.10865173,-0.24498297,-0.14890952,0.00611646,0.42564285,0.10348382,0.82373047,-0.32996687,0.20022082,-0.13579015,0.05954666,-0.18552981,0.11593261,0.49848577,-0.608098,0.33296472,-0.5583065,0.2587201,-0.21378867,0.04931937,0.02033629,0.155225,0.29990515,0.6025054,0.38791525,-0.10134781,0.32804516,0.9296875,-0.4195902,-0.10765176,0.04394921,0.40867662,0.1938706,0.3320581,0.01554567,-0.69099504,-0.03867257,0.1008613,0.3613981,0.04603123,0.2358079,-0.546875,-0.46273312,0.34361583,-0.31605035,-0.28698066,0.31050703,0.21676083,-0.04649268,-0.11303711,-0.24261332,-0.4384558,0.03246878,-0.71028644,0.1483856,-0.34957504,0.40192005,0.02386253,-0.18752812,0.06241337,-0.28616124,0.33020413,0.00607355,0.06139961,-0.11767992,0.23776315,-0.2538817,-0.70520836,0.1238965,0.31335574,0.22214314,0.28702334,-0.12796141,-0.5485131,0.23142363,-0.093713,-0.581881,-0.10742127,0.32125,-0.41063133,-0.20561096,0.37106517,0.7941176,0.01977636,0.03990463,-0.05724081,0.05627632,0.252906,0.24506728,-0.0496654,-0.1445404,-0.02987408,-0.9814453,0.13874558,0.05603061,-0.16697165,-0.23285618,-0.12841544,-0.04786334,-0.01653357},{-0.07132939,0.06170491,-0.07304857,0.16155615,-0.51939416,-0.11087575,-0.370856,-0.7369026,0.11819523,-0.28802696,-0.39734638,0.18359375,0.5421606,-0.91015625,-0.2890728,0.07493737,0.353312,0.63627774,-0.31635273,0.12510876,-0.63324654,-0.8376736,-0.46794578,0.07173904,0.77734375,-0.36324468,0.02856844,0.11521146,0.10375115,0.43886718,-0.23088728,-0.08008096,0.272362,0.11327769,0.4207849,-0.01514386,-0.05906568,0.07766157,-0.02553482,0.03788315,0.5192689,0.74696183,0.16161107,-0.06397237,0.12062576,0.26421875,-0.2334692,-0.39449948,-0.3378128,0.22264025,0.30683595,0.49952856,-0.392513,0.21139899,-0.28318936,-0.5463867,-0.33198768,0.01806495,-0.1479903,0.05664028,-0.13231122,0.02035757,-0.07734342,0.33498833,-0.00713812,-0.27539062,-0.11911055,-0.15281191,-0.01125294,-0.22316734,-0.09000815,-0.1298955,-0.12499885,0.03920569,0.03061031,-0.11132573,0.524295,-0.5878906,0.8526786,0.23684368,-0.01109807,-0.54592484,-0.2948477,0.57866377,0.4883436,-0.16259535,-0.29095688,0.25879315,0.08523184,-0.03801312,-0.43627763,0.17427461,-0.6626674,-0.18592152,-0.20408443,0.09305488,-0.19583805,-0.0402759,0.7686298,0.13077432,-0.35619968,-0.68376356,0.26171875,-0.03494164,-0.1715194,0.51145834,0.23817544,0.41881588,-0.1147051,0.1037323,0.01298046,-0.618045,0.2441373,0.5113511,0.14990863,-0.10858656,-0.47410858,-0.04903121,0.03549015,0.7274306,-0.23927519,-0.02622014,-0.46763846,-0.1091162,0.25682715,-0.2290553,-0.21339966,0.5877646,0.15177533,0.5854492,0.02479251,-0.09426888,0.4159146,-0.01733635,0.31441066,-0.07130911,-0.73133683,0.17089558,-0.09275045,1.265625,-0.13874261,0.01102891,0.8776042,0.02570018,0.5215517,0.5074278,-0.31055623,0.52715623,-0.29492632,-0.1288815,0.73207134,-0.48358342,-0.0324272,0.4617122,-0.2655731,-0.01610551,0.86588544,0.556875,0.3748508,0.1913457,0.05812975,-0.24522716,-0.35928664,0.5835937,0.03136464,0.0705223,0.15284716,0.11328284,-0.5470861,-0.00713979,-0.04881791,0.14991432,-0.66903406,-0.06113903,-0.390625,0.06566857,-0.00862635,-0.07933032,-0.0971968,-0.05091688,-0.00601311,-0.08811103,-0.285104,0.21631634,-0.54557294,-1.1328125,0.21368468,-0.35239956,-0.55558896,1.0234375,-0.35378298,0.12035719,0.263704,0.43716165,0.26857677,-0.00165184,0.733538,-0.2098733,-0.5155599,0.15237863,-0.21787547,0.5957031,0.28603148,-0.1889389,-0.7387153,0.009372,-0.15432845,0.22963603,0.28926402,0.32893133,-0.45513314,0.42728642,0.2128953,-0.1203167,0.29001844,-0.02648532,0.12884438,-0.34259734,-0.1269517,-0.07048902,0.00983174,0.09906635,0.18403661,-0.23545963,0.5553886,0.4647967,-0.04641707,-0.4032118,-0.09007096,-0.828125,0.13773902,0.01421154,-0.40729585,-0.65546876,-0.8335937,0.06636602,-0.2871292,-0.23636815,-0.03186722,0.13275988,0.32209843,0.09384321,-0.38885194,-0.25059897,0.03131524,0.04453176,0.18161447,-0.17491779,-0.06740697,-0.5267561,0.44864243,-0.22856729,-0.6243206,-0.30647922,-0.05017729,-0.23195776,-0.3874853,0.29704094,0.07938072,-0.4891803,0.01136225,0.09987277,0.50214463,0.17866294,0.5265377,0.27247772,-1.09375,-0.39275274,0.6669922,0.09326884,0.06076746,0.6418373,0.5811198,0.22807498,-0.05201882,0.15719092,-0.04256998,-0.18307664,-0.04031225,0.8457031,0.47856444,0.98046875,0.3085549,-0.39982024,0.31615677,-0.15577883,0.23335274,-0.6436942,0.3008587,0.48924673,0.11617138,0.45309013,-0.42389113,-0.03328582,0.51953125,-0.10202174,-0.30573756,-0.3291349,0.26551834,0.04773387},{0.151872963,-0.386887759,-0.198116586,-0.349500865,-0.144050881,0.203042775,0.201625556,0.201149166,0.22692275,0.273313016,0.124437258,0.095499754,0.200641394,-0.170405224,0.203735799,-0.0876064003,-0.16840747,0.060118109,-0.00985282753,-0.566670179,0.0878536329,0.139251411,-0.100760125,-0.24519752,0.17618534,-0.764105916,0.682617188,0.0566320494,0.412985414,0.376061469,-0.329843223,-0.151385695,0.00206181314,-0.0664019585,-0.285108626,0.043515455,-0.0443337709,0.188536972,0.544580102,0.133207679,-0.0594522543,0.114477389,0.394676745,0.0163423326,-0.615931928,-0.268530577,0.158243954,0.677246094,-0.0937166288,-0.223672912,-0.12576814,-0.0626411512,0.627111495,-0.356460094,-0.618489563,0.0495591238,0.590066969,-0.117957443,0.0547624379,0.838541687,-0.552711904,-0.190322131,-0.635869563,0.17177926,-0.294783473,-0.255850643,-0.272482067,0.0336841084,0.666015625,-0.0147088906,0.0269216001,-0.311609089,0.153718531,-0.143006653,-0.0631450042,0.0602089539,-0.538155675,-0.159649193,0.159744814,-0.18759352,-0.190560356,-0.0352765024,-0.814174116,-0.456088364,-0.0569052733,-0.402662635,-0.474335253,0.0299326275,0.0624445304,0.104733571,0.0797979757,0.0459051318,0.0106193759,-0.123430327,0.410833329,-0.286057681,-0.369107515,-0.590084136,0.12126182,-0.620659709,0.0880802721,0.322962523,0.424662054,-0.30474478,0.326171875,-0.289096981,-0.24156107,0.0437322259,0.353471667,0.126445368,-0.106710747,0.315446109,-0.339589834,0.700195312,-0.235739559,0.777777791,-0.334015876,0.724218726,0.0861653611,-0.0219574291,-0.0038324378,-0.339782715,-0.201116964,0.107902505,0.0922300741,0.0568358786,-0.459987342,0.354690194,0.46329686,0.217712611,-0.293925494,-0.512040436,0.373272657,0.298864394,0.287882119,-0.0190231819,-0.607204854,0.0727439523,0.170346096,-0.12469089,-0.568969727,-0.0468591824,-0.452358872,0.126970679,0.678819418,-0.130324587,0.304665059,-0.530106723,0.39666912,0.252493352,0.16012916,-0.335970759,-0.0540120713,-0.384033203,-0.0369799137,-0.295821637,-0.467522621,-0.707632184,0.162577659,0.168975487,-0.186943308,0.0991204455,0.600563228,-0.0219037309,-0.0658845231,-0.134752482,0.234963059,-0.0346388668,-0.365157664,0.491511405,-0.160611689,0.0942263156,0.455273449,-0.326144487,-0.356280446,0.162072897,0.59679687,-0.128927141,-0.111163653,0.205514416,0.14849107,-0.0681299493,-0.126953125,0.324995786,-0.171457022,-0.128499761,-0.498614639,-0.30463022,0.150918618,0.42586264,0.159620062,-0.916015625,-0.75390625,-0.013139559,-0.508840442,0.21823281,0.0676373616,0.201151311,0.0896235034,-0.0248051975,-0.873046875,-0.0611258037,0.500545084,-0.0430567041,-0.235310689,0.414117515,0.0473499224,0.166416153,0.0266662501,-0.231997356,-0.407170445,-0.229451492,0.000645902939,-0.250892073,-0.171362951,-0.450691611,-0.446189404,-0.209871292,0.449359685,-0.415147573,0.421359092,0.0852080137,-0.0456533916,-0.101325333,0.0551200174,-0.259641618,-0.112969086,0.475144476,0.052503299,0.187930569,-0.316454887,-0.181588978,0.0469123721,-0.571940124,0.107447475,0.0942580029,-0.135811582,0.463638633,0.286130428,0.0626770332,0.176267311,0.250178218,0.278470546,-0.229929447,0.12154343,-0.310610563,-0.157698259,0.844010413,0.223736107,0.381368876,0.0429275073,0.0032489018,0.108619608,-0.262543619,1.234375,-0.760253906,0.197734952,-0.523389876,-0.826497376,-0.215828672,0.343728065,-0.346528947,-0.107207239,-0.303717256,-0.385879815,0.307611465,0.092545338,0.278293669,-0.691136837,-0.0357285701,0.0971317664,0.382747799,0.271398216,-0.379737377,-0.20420149,0.055131197,0.3474105,0.0390061587,-0.35417667,0.0888573453,0.181147382,0.0137145855,-0.323248029,-0.0818255991,-0.219713762,-0.718213856,0.0678620189,0.164526194,0.0520051457,0.363354564,-0.109907612,0.130851701,-0.614438653,0.0197105091,0.352493525,0.0815766156,0.125528395,-0.204579994,0.192928642,0.490979373},{0.52734375,0.07518727,-0.16099721,-0.03168805,-0.16057803,-0.0851991,0.4052921,0.07865463,0.7732077,0.25678658,-0.17377171,0.48242188,-0.39360324,0.4022511,0.0719906,0.24320287,-0.12135074,0.03404073,-0.45317042,0.23719041,0.3417819,1.09375,0.09716582,-0.1269151,-0.06497308,0.76171875,0.19136927,0.19870822,-0.03713621,0.0949751,-0.42470104,0.09911855,-0.17581116,0.33602092,-0.19390042,-0.50390625,0.29290533,-0.05907381,-0.34484565,-0.48376116,-0.09814453,0.42950994,0.23488906,0.19920053,-0.28303447,-0.1850697,0.92578125,0.1293266,-0.538737,0.10566254,0.06153516,-0.13669403,-0.15774132,-0.7196181,-0.21630724,0.09911307,0.37607598,-0.4559712,-0.40627035,-0.4023729,-0.21330523,-0.05361415,-0.06544922,-0.53896403,-0.34162146,-0.16456373,0.02391565,0.07760724,-0.2950082,-0.26451573,0.44428986,1.1015625,0.01606722,-0.17387444,-0.137719,0.0762816,-0.05194624,0.14108947,0.23373897,0.12010546,-0.58203125,0.17242466,0.05296345,-0.6150568,-0.29486817,0.0681487,-0.00632812,-0.03463631,-0.30753967,-0.44458634,0.03753172,-0.192358,-0.43093678,0.24367526,0.19376428,-0.21090084,0.21232298,0.03104125,0.2598019,-1.0351562,0.21773036,-0.5901989,-0.3779858,-0.26179776,0.02781766,0.14114718,0.18603516,-0.3342816,-0.17476697,-0.19484061,-0.28424925,-0.06220878,0.33012998,0.24870391,-0.26577437,0.0698257,0.03611112,-0.35532925,-0.19128057,-0.33208984,0.90625,0.2172772,0.25194559,0.24563073,0.8120117,-0.10954013,-0.5191494,-0.6629464,0.53091896,0.4108687,-0.26951653,-0.25061217,-0.14300035,-0.2930849,-0.21047772,-0.05053905,0.40210938,1.078125,0.43837002,0.07327276,0.14840333,0.4053969,-0.12885563,0.6360677,0.1188871,-0.85546875,-0.3768337,-0.04319429,0.06054382,-0.6424632,0.5801118,0.38012838,-1.0130209,0.38169718,0.1567271,-0.24168898,-0.2294156,0.09835891,0.10302,0.0670858,-0.40442806,-0.11983564,0.05504517,0.5000208,-0.02620107,-0.39445344,0.2559203,-0.18503085,0.20070505,0.05103439,-0.17383441,-0.12128302,-0.24838609,0.21044922,-0.02960181,-0.8726562,-0.13671875,0.304971,-0.28513226,0.18406092,-0.11577058,0.09541477,0.21630451,0.12625684,0.15040135,0.24573317,-0.07323223,0.29949382,0.00898032,0.348745,0.21280767,0.29102448,-0.17913888,0.31455278,-0.42542782,-0.14243193,-0.40381086,0.10103749,-0.30273438,0.859375,-0.0146705,-0.07593273,0.08476757,0.43353224,-0.35633382,-0.00407333,-0.56025094,0.06021277,0.5042668,0.5639468,-0.16892856,0.15861003,0.52353275,-0.02116776,-0.15963991,0.40499133,-0.22905274,0.00297427,1.390625,0.52297795,0.21932898,0.32618302,-0.6433293,0.06957056,-0.10474333,0.0917806,0.24075107,-0.5250727,-0.5296689,0.08032377,0.377665,0.24273232,-0.2266321,0.04978487,0.34573635,0.00418553,0.751709,0.2889099,0.44225505,0.52320313,-0.32795948,-0.02947906,0.16605651,0.3042144,-0.05649195,-0.10205021,0.07890733,-0.1357384,-0.00456463,-0.21296106,-0.2187526,0.05384323,-0.8304688,0.06758092,0.3836629,-0.17673425,0.3007892,0.04810707,0.15081733,0.17197546,0.04346335,0.40803328,0.07664908,-0.06785051,-0.2065846,0.11301226,0.01058013,0.19720273,-0.3204065,-0.40729716,-0.27638108,0.04389393,-0.04993988,0.5237551,0.35454625,0.04310924,-0.6671606,-0.09305217,0.6451823,-0.10473697,0.7578125,-0.39054224,-0.11941069,-0.13037287,-0.15475933,0.0080991,-0.26081088,-0.27724445,-0.28327572,-0.65559894,0.03253555,-0.6061198,-0.21768375,-0.0462321,-0.10131869,-0.03365482,0.07449473,-0.5072545,-0.15574957,0.07643513},{-0.21223377,-0.49975586,0.50765306,-0.17967127,-0.61277723,0.8574219,0.10424073,-0.03626394,0.89285713,-0.37589684,-0.25971943,-0.95703125,-0.08132693,-0.3933134,-0.19241643,0.25880536,-0.35331497,0.19774063,0.43630072,0.25947627,0.01530878,0.04516083,0.65283203,-0.00740229,-0.14400686,-0.6268466,0.12054342,0.03284799,-0.17192827,-0.11226805,-0.17080739,0.29690015,-0.5333227,0.31048584,0.64105904,0.06316364,-0.03285041,-0.20905982,-0.5292245,-0.02379718,0.3897245,0.37350366,-0.14456221,0.23782031,0.36406016,-0.17042296,-0.492573,-0.12578902,0.32024541,-0.71875,-0.29300082,0.43940848,-0.13861819,-0.14006114,-0.26862356,-0.0947345,0.2841658,0.03773742,0.45602757,0.01015796,0.3262207,0.33987802,-0.0279534,-0.02524923,0.47586656,0.24963517,-0.04714057,-0.23913069,-0.2635779,-0.40967163,0.37988874,0.21139227,-0.4330078,0.25146607,-0.0388382,-0.27249408,-0.21674974,-0.54639727,0.35153133,0.19876926,-0.13234769,-0.49339843,0.07156392,-0.19481361,-0.13910791,0.87890625,0.0190217,0.11081893,-0.43132812,0.12163392,0.1748516,0.1076404,-0.2104768,-0.00513906,-0.08518043,0.03362848,0.6410511,-0.18402745,0.685791,-0.13566634,0.61449033,0.03626221,-0.33976805,-0.04506441,-0.40245312,0.07098668,-0.8151042,0.08225958,0.18512279,-0.14254814,0.440958,-0.80566406,0.6875,0.61300224,0.62391955,-0.20413093,0.09826128,0.01214705,0.1430792,0.44283107,0.1787199,0.4963427,-0.30652815,0.31538475,0.14155895,0.50596786,-0.23295301,0.09499765,0.39938,0.48412606,-0.15774405,-0.28905708,-0.36135954,0.22509088,-0.6888951,0.599941,-0.16645321,-0.2773324,-0.03849253,0.11478072,0.06140437,0.19035411,-0.38675526,-0.15666573,-0.41478306,0.25288445,-0.19531624,0.9632813,-0.42588013,0.07418053,0.11470999,-0.07933014,-0.42291784,0.17624561,0.90494794,-0.98046875,-0.12745684,-0.07112808,0.08324755,-0.03219679,-0.2260645,0.07639055,0.20061797,0.00240697,-0.40035808,-0.60223216,-0.03836632,-0.36535335,0.04820769,-0.29396558,-0.11060385,-0.01601443,0.21442308,0.13185465,0.05498852,-0.36805052,0.10378014,0.15292257,-0.20550969,-0.37893364,-0.35366938,-0.03993455,-0.14693084,-0.07222975,0.2193684,0.19781642,0.46802455,0.09817302,-0.1802175,-0.09111861,0.19053091,-0.19771975,0.05479024,-0.17974877,0.05887228,0.10086995,-0.153276,0.00610256,0.2616901,0.04540529,0.08001977,0.38479435,0.22865032,0.06135121,0.07492993,-0.3193521,-0.6624349,-0.41774592,0.32503563,0.20893298,0.01683518,0.01355122,0.15722051,-0.41918483,-0.2100405,0.03992759,0.6625601,1.1640625,0.17784742,0.09960236,0.14256413,-0.40320313,-0.23290081,-0.21034792,-0.0142606,-0.22074433,0.29104802,-0.16501385,0.02360224,-0.18843806,-0.34850317,0.4552525,-0.10246391,-0.2463873,0.10327718,0.58845764,-0.572333,0.1538657,0.04885567,0.17042905,0.2529314,0.2794471,-0.21636488,-0.6220238,0.06471328,-0.01340055,-0.5624249,-0.05676847,0.3172921,0.32334456,-0.26660156,0.04199194,-0.00606247,0.21924941,-0.20568454,0.00987129,-0.14598349,-0.37482682,0.4890183,0.27432957,-0.34307343,0.21866708,-0.15483032,-0.32821408,-0.24198602,0.256917,0.3192599,-0.10544521,-0.14062673,-0.6705322,-0.61573404,0.00221757,0.25058237,0.2558526,0.39358553,-0.23337528,-0.17386301,0.4570711,0.02454001,0.23439153,-0.14496514,0.11842924,-0.68828124,0.28995535,-0.34437552,-0.18307611,0.4180808,-0.05608937,0.49682826,-0.52755487,-0.04771744,-0.2226415,0.09842301,-0.23133162,0.1037344,0.49922296,-0.13955975,-0.61083984,-0.30868056,-0.37210584},{0.172793731,-0.00249861157,-0.451271534,0.729745388,0.00138216559,0.0702881217,0.721191406,-0.240822718,0.0107156364,0.104036517,0.6640625,0.0187236816,0.421064675,-0.0648711696,-0.773003459,0.745768249,-0.427696079,0.0479811393,-0.10982918,-0.245014936,0.210337013,0.277373731,0.0155869108,-0.208597437,-0.420609593,0.287727565,-0.296762794,-0.115764894,0.00790115166,-0.0670583695,-0.106198743,-0.41499415,0.0266344603,-0.536621094,-0.874218762,-0.239782199,0.274481595,0.0379629508,-0.155350536,0.541992188,0.321230233,-0.362318069,-0.113756582,-0.285235435,-0.723257184,-0.471786499,-0.162119687,0.322159261,0.192277998,-0.086959742,-0.0501529388,-1.08124995,0.423743218,-0.113039464,0.41475001,-0.10887827,0.462602109,0.641796887,0.114720583,0.268264592,-0.0781345516,0.633897543,0.450086802,0.128909633,0.168948248,0.315467626,0.446029961,0.015664205,0.110657223,0.168498576,0.188937634,-0.540601313,0.095477812,-0.234409153,-0.300799876,0.454656869,-0.637637854,0.025079675,-0.513556957,0.139666304,-1.078125,-0.0744651109,-0.10284441,0.284206718,0.135721847,0.164585978,-0.264608741,0.123666905,0.178235322,0.266493052,-0.067376487,-0.211466148,0.0253830738,-0.304578483,0.375897706,-0.160675153,0.228978097,0.383712471,-0.431375384,-0.180153683,1.1015625,0.294921875,0.542903662,0.250167251,0.149384022,0.225984275,0.426381141,-0.23296085,0.130366772,0.456031442,-0.0890910029,-1.234375,0.428682059,0.00083575875,0.263647258,-0.167444229,-0.136701748,0.316825509,0.60887897,-0.201580539,-0.04726151,-0.384490192,-0.0531628728,-0.0490473807,-0.302660525,-0.348579556,0.0874655768,0.294737399,-0.519815326,0.0697654858,-0.0267753713,0.235204205,0.343852401,-0.0942448974,0.0597868077,0.284147441,-0.126427278,-0.0829904601,0.773995519,-0.0628471375,0.0226991437,-0.0668677092,-0.627046108,0.00229154108,-0.265679449,-0.244515955,-0.128388554,0.0817943066,0.0844967887,-0.56226182,0.454036444,0.134715796,0.215247318,0.816685259,-0.106908314,0.397290707,0.251593977,0.330025613,0.068363823,-0.276403368,-0.12986064,1.0859375,0.352436274,0.0846536309,0.113025077,-0.48662293,0.512000263,-0.141111299,0.275065094,0.379913807,0.136756316,0.207470834,0.094197996,0.037587177,-0.0621879324,-0.104278155,0.0885571912,-0.290059537,-0.341736674,-0.17040126,0.0871882811,0.188361675,0.584472656,0.0596721731,-0.154360309,-0.0908090472,0.179670855,0.0756277591,-0.0331781916,-0.365513384,0.315265328,-0.704101562,0.251992971,-0.116655469,-0.0112348059,0.440227926,-0.520616293,-0.508171678,0.546535313,-0.362195432,0.638487637,0.307632446,-0.341802925,0.342392564,0.134218633,-0.0820457563,-0.424118191,0.311426997,0.35149467,-0.282188833,-0.62103796,-0.0844534636,-0.015995536,0.680226266,0.0907218605,0.369309247,-0.0881471261,-0.8828125,-0.358284563,0.681463063,-0.0771316215,0.257690877,0.155726314,0.0244545527,0.417908967,-0.631696403,0.0195790753,-0.7421875,0.16551502,-0.237799004,-0.185036063,-0.725446403,-0.0888754427,0.381835938,-0.0213126726,-0.121112972,0.224030435,0.0740441903,-0.111530289,-0.108872354,1.1875,0.96875,0.191873297,-0.0150581188,0.153292418,-0.232395679,0.202555701,1.359375,-0.197802305,0.626378655,-0.659307063,0.163021579,-0.419787169,0.767475307,-0.321456045,-0.0856510475,0.270448029,-0.0644597709,-0.0942365453,-0.0162766185,-0.0477696098,0.0742079914,0.669270813,-0.400382936,0.397411764,-0.480678022,-0.0859449655,-0.00807003677,-0.467627674,-0.245528907,0.00274208514,0.56207329,0.10037072,-0.159572273,-0.174871534,-0.110361479,-0.476256579,0.564642131,-0.138657704,-0.14004232,-0.222206548,0.240559891,1.00195312,-0.0561079346,0.102534793,0.373737991,-0.147416964,0.381835938,0.38675341,0.15625,0.397004366,-0.342790723,-0.23586309,0.371982485,-0.074241437,-0.306701034,0.0105471639,0.272431552,0.334001869,0.671316981},{-0.45124796,-0.25676128,-0.06422093,-0.23247969,-0.08621743,-0.2177423,0.05732577,0.05573815,0.36131966,0.17869903,-0.8828125,0.13143396,0.13618523,-0.0223306,-0.07323643,-0.37575734,-0.33295313,-0.11066974,-0.34008247,-0.01509877,-0.32121325,0.6800426,0.00126045,0.26166368,-0.31255522,-0.29488438,-0.1913776,0.36717057,1.15625,-0.12938444,-0.03478791,0.47415647,0.36605284,0.37883076,-0.38385418,-0.13813964,0.23883806,0.24224925,-0.11694534,0.34569395,-0.12845084,-0.03869655,0.06051451,-0.15671983,-0.07984161,0.37796724,0.42163086,-0.3555197,0.17471842,0.25283968,-0.1132877,0.13967994,0.2833098,0.19198729,-0.16847664,-0.7511161,-0.7192708,-0.5508735,0.03437413,-0.29472998,-0.296734,0.111821,0.32705185,0.4209682,-0.06441935,0.02232993,-0.46272078,0.00313016,0.1821918,0.29380676,0.0572032,-0.04919807,0.22498702,0.00996087,-0.9394531,0.26367188,0.30458286,0.10054173,0.10645296,0.08446646,-0.28125,-0.33878714,-0.35245448,-0.00516364,-0.07594189,0.0313662,-0.36240608,0.67144096,0.22310051,0.15331313,0.04693137,-0.10181302,-0.7575605,0.20020078,0.04550588,-0.07523868,0.17721182,0.31161222,0.15042411,0.0696075,0.10374933,0.5480769,-0.06887238,-0.07255753,-0.00847729,-0.33591744,0.07104259,-0.3694599,-0.38740405,0.40730467,-0.04945737,-0.167448,0.20846193,0.03957241,-0.19273227,0.00408347,-0.37576115,0.07437928,0.8828125,-0.64397323,-0.07883786,0.07277908,-0.71657985,0.03996348,-0.16306756,-0.02757058,0.00779077,0.38669562,0.09399442,-0.74348956,0.31955886,-0.20502359,0.84765625,-0.14456834,-0.00346533,-0.3451903,0.5485883,0.27916357,-0.22946507,0.27828896,-0.15625,0.07956587,-0.09735901,0.4160547,0.47653022,-0.2695224,0.33323318,0.58807486,0.1135803,0.0353259,1.0052084,-0.11499272,-0.2085158,0.09418494,0.20362434,-0.49570313,-0.5467945,-0.15180376,0.2881821,0.6321957,-0.672631,-0.18207055,0.6743164,-0.6543818,0.22451171,-0.01431821,0.33683267,0.1733295,0.30673474,0.1088526,0.00692811,0.02905343,0.02947813,0.82128906,-0.17235415,0.00990446,0.9267578,-0.72291666,0.21639638,-0.20414124,-0.25384384,0.20798476,0.34197444,-0.03559914,0.29111263,-0.19131398,-0.6779514,0.01108582,-0.3018794,0.22412479,-0.8292411,0.4646307,0.17088045,-0.10211372,0.23768167,0.49419028,0.12536268,-0.25683907,-0.00816942,0.30861828,-0.39940783,0.4711072,-0.19679503,-0.39933312,-0.48272058,-0.21865939,0.01901172,0.28388363,-0.05433554,-0.02577447,0.7109375,0.35435528,0.33093512,0.45679843,0.05046751,0.1699599,0.18797058,-0.17030074,-0.15863886,0.39890096,0.03541636,-0.23825113,0.38578507,-0.01242914,-0.3448113,0.03145533,-0.4888221,-0.11445674,0.58091515,0.14355107,0.14993918,-0.20312987,-0.32807174,0.1918571,-0.22364852,0.18948898,-0.6689453,-0.77994794,-0.01196244,0.3408727,0.1425794,0.17729048,-0.08396056,0.47706473,-0.06979572,-0.26753086,-0.01289027,-0.1086453,-0.1405944,0.15133777,-0.99088544,0.19675751,0.09347861,-0.07838501,-0.63103694,-0.01378457,-0.08349279,-0.17237608,0.2892086,-0.25055835,-0.12272415,0.08790531,-0.25287163,0.27349892,-0.31260145,-0.42040265,0.11085466,-0.42013493,0.06754557,0.59440106,-0.3673091,0.35351077,0.37383667,0.16019854,-0.27512962,1.1015625,-1.171875,-0.15190148,0.1066876,-0.11938944,-0.37873134,-0.1806477,0.37490845,-0.11429364,0.27733064,0.07542829,0.25576478,0.15086348,-0.5846946,-0.3124151,0.778125,-0.47590145,-0.29298043,0.10345706,0.69591343,0.00714541,0.15082808,0.07232977,-0.41622025,0.5389337},{-0.0856913179,-0.103559516,-0.111100964,-0.268355399,0.826822937,0.111055464,0.339910239,-0.355482608,1.1953125,0.339794487,-0.240149558,-0.0884251967,0.172786042,0.241731167,-0.252900869,0.0859801844,0.0109735187,-0.417643219,0.0137292128,-0.30562377,-0.0534973778,-0.11987453,0.28325665,0.0368260629,-0.0208316669,0.166360676,0.0450564325,-0.0695918128,-0.139176801,0.0881236717,0.224588931,-0.212361157,-0.00845554471,0.203577086,0.148936734,-0.647892416,0.62109375,-0.596788168,0.477513134,0.488795221,0.153753772,-0.419778645,0.0857259482,-0.430286467,0.341056645,-0.119112015,0.0484378524,-0.44012332,-0.0827442259,0.275336653,-0.20262973,-0.0990721881,0.194313183,0.0422336534,-0.13428086,0.544690132,0.1061498,-0.355504841,-0.104526825,-0.704101562,-0.32421875,-0.810546875,0.23620683,0.0966090411,0.277289987,0.00447971746,-0.153328061,0.576030374,-0.142040759,-0.144901082,-0.00955890305,0.0367241167,0.645833313,0.346517742,-0.0488501005,-0.36128965,0.376014739,0.168924868,-0.710156262,-0.14454785,-0.35556978,-0.279344648,0.232324556,0.0557240434,-0.508497834,-0.011058731,0.378575712,-0.388451368,0.256881177,-0.292911023,-0.194304615,0.212939799,0.0617449582,-0.276496977,0.0308017004,-0.312453508,-0.49954927,0.0646683574,0.519355297,0.486683249,-0.217297301,0.204538867,1.0390625,0.0683049932,-0.221673146,0.0205777939,0.283095747,0.16597487,-0.0891123712,-0.273534745,0.348603666,0.0161582902,-0.17280978,-0.0205868576,0.0918025151,-0.403991699,-0.00145507744,0.102475688,-0.28125,0.223117039,0.471912205,0.659986436,-0.18211706,0.0547982939,-0.633322001,-0.174790129,0.22108756,-0.0820444673,0.0222818851,-0.397198021,0.132304683,-0.454068631,0.65234375,0.454110682,-0.252985805,0.189430103,-0.0971538499,-0.0652091056,0.228006631,-0.0196257904,0.121344425,-0.000989004388,0.0522680506,0.222583964,-0.0216760784,-0.00934016798,-0.0136436578,-0.143995419,0.198758408,0.443147093,-0.0624778457,0.227068514,-0.64037025,0.0595050342,-0.473645508,-0.459084034,-0.703822553,0.146511257,-0.506131351,-8.80039079e-05,0.316564947,0.19780466,-0.437522203,0.717633903,0.370200902,-1.09375,0.309688777,0.201678157,-0.188475057,0.0396773182,-0.314335018,-0.187011719,-0.8828125,-0.154703543,-0.190417841,-0.199662447,-0.360975683,0.0195428841,0.0910565332,0.668212891,-0.19819887,-0.24130559,0.257760495,0.0112376567,0.0350348204,-0.104968093,-0.0854546279,-0.0555310734,0.21149756,-0.237891451,-0.286273241,-0.0163900685,-0.212357953,-0.151861861,-0.0249727145,-0.236276224,1.09375,0.116697013,0.80078125,-0.267517835,-0.138652638,0.113230467,-0.0947531462,0.290956438,0.305645645,-0.0490404628,-0.178167745,-0.206083477,-0.0383002982,0.227975339,-0.888671875,0.0442479476,0.358372033,-0.0389196575,0.482601762,-0.0920255631,-0.00810502842,0.013614269,0.194221541,-0.723524332,-0.226013809,0.558828115,-0.197323427,-0.157173425,-0.293829799,0.42000559,0.150386155,-0.356512666,-0.116923191,-0.469294608,-0.0934900567,-0.263591439,0.0954759866,-0.340656728,-0.0493453071,0.0175274592,0.00427306211,0.230413854,-0.530007124,-0.322279572,0.02352258,0.0649124384,-0.200220838,-0.296834975,-0.237781376,0.338712424,-0.401376486,0.628483951,-0.410019994,0.0762285367,0.0837665722,0.252992153,0.382831097,-0.449637264,-0.404273897,-1.15625,-0.0441759489,0.0986028984,0.392491966,0.338986546,0.159147888,-0.114452228,0.252854556,0.00512967771,0.11642345,-0.113291368,-0.234853059,-0.132315412,0.0374437906,-0.296823055,0.9765625,0.0287293438,-0.230014861,-0.18214412,0.527287126,0.135247946,-0.755859375,-0.123929694,0.0765827075,0.3700459,0.217703894,-0.16061306,0.347688466,0.529162169,-0.125349998,-0.386677384,-0.624660313,0.291083455,-0.377725303,-0.0122628557,0.0822765455,0.160184667,0.258852869,0.030715324,0.151357755,0.260785669,-0.213407114,0.095217444,-0.341433734,-0.307355851},{-0.399374217,-0.041757863,0.160688922,1.0546875,0.106913939,0.435152829,-0.185585216,0.811523438,-0.126388043,-0.480251729,-0.0494756922,-0.158667758,0.380835831,0.0213306434,0.3222844,-0.498372406,0.0291558132,-0.127893895,0.481445312,0.103607975,-0.162054047,0.172935754,0.14012529,-0.0283199139,0.92578125,0.452463955,-0.313419849,-0.40538469,0.0713151991,-0.259796053,0.0248664916,-0.441033185,0.0478568636,0.0683839545,0.0019889595,-1.25,0.199650139,-0.226157591,0.0690923631,0.115908638,-0.197233289,-0.0520157963,0.2041329,-0.0225942582,0.174880713,0.0672014505,0.231306389,0.154339716,-0.168910876,0.509595811,-0.776041687,-0.0488928892,-0.368079275,-0.323159277,0.156710848,0.796875,0.183027655,0.297681451,-0.533235133,-0.0169530269,-0.109633826,0.0656717941,-0.0518741384,0.0649100989,0.577618659,-0.103282526,0.205673262,-0.101332106,0.571732938,-0.00282658497,0.489257812,0.578377008,0.0374797881,-0.519864738,-0.285982579,-0.380869895,0.32828936,0.0634792447,0.0537222736,-0.829545438,0.0277711246,-0.407566249,-1.1640625,-0.367140323,0.243232474,-0.513482869,-0.431610107,0.0576063991,-0.023595931,0.457512021,-0.466676682,-0.157716587,-0.6010378,-0.159101292,-0.429478914,-0.143043429,-0.00716303522,-0.0225164946,0.36918658,-0.053674303,0.120873071,-0.278267443,-0.16501525,-0.197760835,0.128387898,-0.0854380354,-0.143045038,0.583687186,0.0114476457,0.172345638,-0.472845733,-0.143047363,-0.248698726,0.432758957,0.0656758547,0.0389595293,-0.6484375,-0.147915617,0.685006678,-0.234825566,-0.428770959,0.168494597,-0.251953125,0.289163023,0.0037146695,-1.03125,-0.351531237,-0.105933145,0.7421875,0.432455719,-0.0502773039,-0.0381869525,-0.0129051767,-0.597031236,0.0180936325,0.0654057711,-0.397430599,0.00293603376,-0.396581411,0.460755378,0.83203125,0.0629479215,0.074188143,-0.25774619,0.248811886,0.691105783,0.126693502,-0.021610558,0.0309812129,-0.523409188,0.406255573,-0.273355097,0.506685674,-0.017931439,0.273354143,1.0234375,0.669531226,-0.215825751,-0.330107719,0.475911468,-0.353622526,0.0195584707,-0.316368312,0.225159392,0.0635177121,0.192054585,0.0396541506,0.616992176,-0.0148924189,0.354308099,0.264352024,0.136238843,0.236803696,0.42578125,0.395599931,0.346332759,-0.0819151923,-0.219756991,0.557031274,-0.413679242,0.103949755,0.0444393978,-0.589657724,-0.262627333,0.911132812,-0.35857138,0.33180359,0.25870809,0.460421592,0.725520849,0.119374633,0.13818191,-0.125280797,-0.534617484,0.119875655,-0.697265625,0.0547713637,0.0185526796,-0.107167073,0.0557779931,0.415942371,-0.0118293148,0.117303051,-0.478172034,0.116222881,-0.205117181,0.127913803,-0.8671875,0.103712134,-0.491558164,0.0805966929,-0.286958694,-0.740625024,0.109388247,0.391694069,-0.386828482,0.205572382,-0.781901062,0.261704981,0.212856188,0.0483428016,0.663124979,0.0293624401,-0.459960938,-0.212455884,-0.953125,-0.0803744197,-0.304485917,0.650699019,0.261880368,0.281414002,0.130883783,-0.136195272,0.00429691095,-0.358294547,0.306584507,0.304625154,0.00542590674,0.000375051168,0.0154372444,-0.0526548661,-0.326071322,0.631138384,-1.13802087,0.109644838,-0.154828534,0.11327856,-0.0888453573,-0.340920925,-0.699573874,-0.160587534,0.485473633,-0.285949707,-0.173705325,0.0805741176,-0.89453125,-0.0163532682,-0.191975117,-0.735440314,0.194340706,0.129872829,-0.042378094,-0.876953125,-0.511856616,-0.838867188,-0.191938668,-0.462821215,0.104218677,-0.0846838206,0.117600664,0.16937682,1.1640625,0.228573963,-0.82421875,0.187985465,-0.529010415,-0.127949297,-0.167384729,0.0387186408,0.207088172,0.000717812742,0.296904385,0.0362367257,0.130867526,-0.0192659087,-0.105222531,0.0996296406,-0.00101671077,0.324000061,-0.193688244,0.517917812,0.511914074,0.404040724,0.515727818,-0.161612466,-0.327881902,-0.190881088,-0.174322113,0.379059583,0.261743933},{0.107367679,-0.136217564,0.362218171,0.542767107,-0.266581982,-0.305357814,-0.296946198,0.434557289,-0.378845841,-0.869140625,0.426828116,-0.17190747,-0.52727139,1.078125,-0.0322312824,-0.425631016,-0.206001312,-0.0527278148,-0.0944957286,-0.45703125,-0.503462374,0.245199427,-0.522894979,0.300740808,-0.0108038792,0.226978227,-0.054437913,-0.576562524,-0.476702005,0.120602325,0.247830793,0.19928427,-0.298694789,0.038563557,-0.177257329,0.30859375,0.40232116,-0.162524313,-0.140095845,-0.538124979,0.4245978,-1.1015625,-0.201661542,0.528627217,0.0225629155,0.176247835,0.280165941,-0.329965442,0.217792094,0.324210495,-0.0232499093,0.106436856,0.0607790425,0.126513526,0.102793694,0.269483626,0.421345651,-0.102233887,0.401953131,-0.2421875,0.614206433,0.146478564,0.169458345,-0.683478832,0.0618288741,0.271476269,-0.340804428,0.304608434,-0.188037843,0.495524079,0.00268184533,0.0975575894,0.122094512,-0.4032107,0.099941723,-0.42863816,0.634207606,0.0370479971,-0.287023634,0.0469818301,-0.103708871,-0.198738024,0.2781654,0.234890476,-0.368164062,0.177203909,0.0585074611,-0.256987393,0.477039933,-0.212485299,-0.143055722,-0.296860218,0.16556102,-1.0078125,-0.219826728,0.140099749,0.256883889,0.213297755,0.610770106,-0.195305273,-0.135760739,0.0228300523,0.467037022,-0.415929198,0.507852376,0.88671875,0.375114888,0.664550781,0.554218769,0.218326658,-0.728515625,-0.208448887,0.455923498,0.219239518,0.509807169,-0.301780671,-0.159191594,0.216236204,-0.0046324553,0.237781972,-0.289102823,-0.181596398,-0.339792341,-0.572526038,-0.179778293,0.90625,0.278436571,0.0080484366,-0.357093543,0.531427562,-0.586237967,0.271453291,-0.0791193917,0.0769054294,-0.0514068156,-0.776041687,-0.0169281363,0.2578125,-0.187016234,-0.445049584,0.0971284509,-0.290000945,0.0900626034,0.0588630885,-0.00804398395,-0.0573499389,0.370525301,0.812239587,0.0450389832,-0.263703316,-0.165401161,-0.515539706,0.623697937,0.983072937,-0.154281989,-0.223166823,0.315264076,-0.220741645,0.0305129755,-0.0448473431,0.732812524,-0.298191011,-0.283143938,0.137152284,-0.349596947,-0.296729445,0.418697536,-0.0546001978,-0.798549116,0.604929984,-0.539487064,-0.610026062,-0.552368164,-0.0176361613,0.230065539,-0.53125,0.178689361,-1.3359375,-0.316388696,0.0229469463,-0.0986154675,-0.101290755,0.160137415,0.435621291,0.573499203,-0.395437509,-0.0582248122,-0.321317494,0.344546556,-0.108865641,-0.562552094,-0.241647825,-0.0532748215,-0.221638635,0.865234375,0.184622422,-0.0214075707,0.0829746425,-0.231411949,-0.130393609,0.601242304,-0.107725695,0.064932391,0.0243772902,0.533398449,0.555729151,0.326218754,0.00319308159,-0.56655091,-0.209942505,-0.349619895,-0.534545898,0.747209847,-0.569896936,-0.188422754,0.87890625,-0.206077993,0.195324793,-0.455957025,-0.041488193,-0.103276752,-0.109903663,-0.211916372,-0.0859774724,0.12890166,0.122806422,-0.276423961,0.0371937901,0.0685798153,-0.585210741,-0.39528355,0.037149474,-0.152779788,-0.269524187,0.385585368,-0.209960938,-0.0104878526,-0.216800734,0.0817592517,-0.00102861365,0.268573642,-0.864062488,0.0190546755,-0.767578125,0.230850071,-0.458573192,-0.341691941,0.116659306,0.641276062,0.00247828313,0.528859615,-0.0796282887,0.189932451,-0.12182413,0.0119207408,0.119071811,-0.216275066,0.0664102957,-0.245635673,-0.421117961,0.0571328476,-0.450803369,0.362318635,-0.22212486,0.463255703,0.505879939,0.0392997637,-0.448403537,0.00603540428,-0.178248286,-0.196299314,0.487259775,0.00129788066,0.419775397,0.0718360469,-0.331964374,-0.28908515,-0.476137906,0.140549108,0.484411627,-0.0300794058,0.385517925,-0.0448451638,0.395216554,0.0237133633,-0.132299542,0.986979187,-0.241716757,0.152799904,0.20949851,-0.0661758482,0.0357463546,-0.349597573,0.592391312,-0.34278965,-0.269521713,0.456373364,-0.0218332745,-0.0797543898,0.451565415},{-0.0217350144,-0.9765625,-0.49955985,0.183078855,-0.483543128,-0.0691054836,0.229021311,-0.525660038,-0.0495475754,-0.424579322,-0.331988424,-0.499238282,0.156260043,-0.253049344,0.178613856,-0.62890625,0.0458032787,0.40516603,0.195737556,-0.202600658,-0.859375,-0.571836889,0.232869551,-0.0647133663,0.0773964673,0.125087902,-0.876116097,-0.230035633,0.330102861,0.349742115,0.362343758,0.223656505,-0.322290868,-1.1015625,0.356434226,0.335997581,0.124887943,-0.0722446069,0.170460582,-0.09666989,-0.0435847789,0.0316960216,0.529242635,0.259678721,0.207059339,-0.0184527859,0.105665505,-0.0678684562,-0.0700347498,0.0316542573,0.92578125,0.0357586183,-0.787946403,0.0995888039,0.118906438,-0.175292969,-0.122075289,0.0553320721,0.000637555495,-0.0390333124,0.275277942,0.00766918249,-0.479567319,0.151441649,0.14500162,-0.407101989,-0.0595651083,0.204986751,0.273342371,-0.91796875,-0.233179212,0.113008261,0.486762166,-0.0339812599,-0.501919448,-0.853190124,0.0179782175,-0.212348282,-0.109298021,-1.1171875,0.453906238,-0.139146075,-0.0253273528,0.0680936947,0.538778424,0.119625621,0.213823959,0.146505401,0.286085188,-0.242260113,0.416590959,0.404425383,-0.185119152,-0.43705985,0.0761604458,-0.511393249,-0.16313526,-0.793457031,0.195783466,-0.274476409,0.0102679189,-0.163574219,-0.110414684,0.0560065024,0.29692924,-1.171875,-0.195834309,0.195771366,-0.0697622448,-0.537478864,-0.552437186,-0.690321207,0.568788111,-0.625244141,-0.343520224,0.0186456814,0.226031289,-0.0830041468,-0.0659485683,0.152775422,0.21391654,-0.616210938,-0.117915958,0.371043682,0.114466615,-0.194879651,-0.171835989,0.690673828,0.11134325,-0.173341081,0.0888833553,0.828125,-0.463349313,0.385900289,-0.316479832,-0.170318812,0.311460823,0.0485554747,-0.0204487406,0.318393379,-0.0705511123,-0.216782078,0.224133149,0.242613986,0.163071886,-0.205619439,-0.0506763458,0.094480224,-0.0401754491,0.0572696999,0.379815817,-0.786211967,-0.880859375,0.158247799,0.0192046389,-0.0984030887,-0.515450835,-0.122046657,0.137221575,-0.413945496,0.392922789,-0.602539062,-0.832589269,0.245950222,0.299814433,0.130408302,0.113557741,-0.284051776,0.117481351,-0.326155037,-0.20358263,-0.529188395,0.333935231,-0.270532429,-0.610911906,-0.34369126,0.211530238,-0.17142415,-0.150898501,-0.0606680289,0.00768499449,-0.539417624,0.0730150193,0.0193609763,0.343770236,-0.239679277,0.00997273717,0.376707703,-0.273300558,-0.270463437,-0.121842258,0.0690901652,-0.0398468077,0.0345450863,0.289081782,0.540846825,-0.0969129577,0.0624046959,-0.0937255844,-1.0078125,0.195299208,0.00304336264,-0.794433594,-0.527286291,-0.105502971,-0.345798224,-0.044510439,-0.0661948547,0.544813395,0.167531967,-0.0309314262,-0.248429626,0.0203530975,-0.136231288,0.0671450421,-0.410872996,-0.270555019,0.112991072,0.575982869,-0.0547090806,0.166480139,-0.262716383,-0.0925306976,0.141589984,-0.447441727,-0.284998506,-0.0926284268,-0.0068951291,0.297712058,-0.530312479,0.530133903,-0.0621104129,-0.0656693503,0.0775948241,0.122798175,-0.170505956,0.486795187,0.415647984,0.586371541,-0.356225789,0.106168397,-0.601501465,0.334879905,-0.422665536,0.051541768,-0.0678572208,-0.174232662,0.751874983,0.185436368,0.257677376,0.0547108725,0.0809940025,-0.0245528184,-0.499899834,-0.29191941,-0.32616818,-0.0550511964,-0.121617191,0.093018651,0.0887952074,-0.424218744,-0.163170636,0.126230195,0.200675294,-0.0282318704,0.0310292412,-0.394341111,-0.380741,-0.0154831009,0.351387233,-0.101359047,-0.0160560366,0.140594751,0.0474911518,-0.87890625,0.0910478756,0.542119563,-0.720486104,-0.185631096,-0.0653601661,-0.348577529,0.0606431514,0.259745896,0.0908334926,0.347649097,0.298828125,-0.546939015,0.0121840285,1.1171875,-0.360821754,0.0976227745,-0.252990067,-0.0651814044,0.0808581114,0.275260419,-0.500385106,0.0905416384,-0.248764306,0.133243039,0.0220480449},{-0.49951172,0.24927907,0.08107327,0.11373892,-0.17088188,-0.53503966,-0.01665324,-0.02284022,-0.48457706,0.01977381,0.39955527,-0.21092649,-0.14791434,-0.30488783,-0.21084753,0.10943728,0.39760044,-0.8046875,0.3925215,-0.6192462,-0.04393451,-0.32999712,-0.08355091,-0.7133789,-0.18410055,0.02706728,-0.13865416,-0.099823,-0.31437358,0.2421564,0.08944302,-0.39810884,-0.0951423,0.25016442,-0.13478142,0.22316813,0.1806187,0.36786255,0.78190106,0.1469394,-0.03213143,0.32215986,0.43164772,-1.0078125,0.22803152,-0.04132727,-0.32037368,-0.03905355,-0.01435281,0.05941663,-0.137712,0.24210854,-0.06548764,-0.1693892,-0.71191406,-0.26760042,-0.20901522,-0.12983511,0.49664652,0.02415276,0.4412287,-0.15819041,0.39612755,0.55478764,0.20571437,-0.3777219,-0.36428016,0.16650535,0.04383269,0.3163858,0.14304285,0.26659337,-1.078125,-0.28615767,-0.5294922,-0.6072677,-0.46004775,-0.18309788,-0.4309375,0.06738055,0.57752407,0.3330577,-0.20367405,0.3789231,-0.73828125,0.15332508,0.54440105,0.2225988,0.01607839,-0.17436314,0.35227773,-0.3260243,-0.01579872,-0.24929449,0.20848913,0.02040284,0.00179288,-0.09178343,-0.5665246,0.17176563,0.05392131,-0.3417356,0.49807438,0.6507813,-0.0209514,0.16747345,-0.6114005,0.49090576,0.07568455,-0.22014195,0.21780552,-0.12576441,0.25971648,0.46891427,0.13575727,-0.01018351,-0.21143033,-0.49307528,-0.23102213,-0.03516537,-0.22128862,0.30938014,-0.43081167,-0.4798077,0.32429492,-0.09421542,-0.03928319,0.07866453,0.07322612,-0.07755414,0.06346622,-0.01472495,0.09520748,-0.11620919,-0.03737152,-0.20350984,-0.36697778,0.3044562,0.28610528,0.30264544,0.30865955,-0.1967207,0.3388538,-0.61821544,0.1450551,-0.3954515,0.27812958,-0.67460936,-0.07302604,-0.71796876,0.04889614,-0.13037156,0.2792591,-0.04882158,0.12180139,0.48775542,-0.05333165,-0.0302339,-0.35754114,0.5460258,-0.24362396,-0.35619056,0.30263573,-0.0092239,0.09687013,-0.14844412,0.5470355,-0.21729335,-0.10809094,-0.5029297,-0.13481647,-0.157221,-0.2889876,0.2558166,-0.2538754,0.28500035,-0.3170416,0.6046875,0.31934002,-0.45607385,-0.42384532,0.2880623,0.27922532,-0.2852119,-0.03663203,0.46615276,-0.33663607,0.05176453,0.13430917,0.6682855,-0.23974958,-0.10524637,-0.072267,0.04604048,-0.34963542,0.12936957,0.15287068,-0.4309188,0.00488876,0.03117263,-0.16010176,0.9082031,0.0536512,0.16841768,0.8720703,-0.48270312,0.19583996,0.78776044,-0.1239455,0.7392578,-0.48353636,0.18012351,-0.13811806,0.09454887,-0.49091372,-0.2557081,-0.40899187,-0.59314907,-0.08008675,-0.10036457,0.43927556,0.19818449,-0.34654626,0.05359669,-0.69038725,-0.1708833,0.03956963,-0.18305646,0.00784758,-0.03437895,-0.57405597,-0.03705959,-0.0081226,-0.0357446,-0.4235322,-0.48349094,-0.10304438,-0.0710568,-0.13330278,-0.2021238,-0.12933047,-0.38542747,-0.5167067,0.0571053,-0.9589844,0.00183265,0.06033521,0.32716674,-0.01477451,-0.5897588,0.57765996,0.40315646,-0.08345011,-0.6001953,0.35348958,0.6814236,-0.23286697,-0.6109375,0.20158112,-0.18119846,-0.0630272,-0.1308436,0.21047634,-0.00807342,-0.07372832,0.47646606,0.17583095,0.489294,-0.41104823,0.21441732,-0.16257572,-0.22653848,0.07687116,-0.07349566,-0.10050455,-0.05947106,-0.33382004,-0.07741287,-0.15771376,-0.26570752,-0.2397936,0.734375,-0.5441176,0.10625662,0.0918031,0.03122414,0.3466757,0.5057231,0.620864,0.06324714,-0.57745683,-0.01162908,-0.192815,-0.62753904,0.42369106,0.44104004,-0.7083333,-0.46791294,0.7331731,0.20945682},{0.0170793049,-0.180685237,0.253860146,-0.55193013,0.0626351237,0.224647224,0.277300984,-0.203537568,-0.185050711,-0.0561949834,0.594904125,-0.356426746,0.248704404,0.114229999,-0.107180871,-0.131755456,0.108918726,0.116696574,0.542209208,-0.405173928,0.414726198,-0.0585030206,0.053332027,0.562988281,-0.102768071,-0.174279451,0.213959709,0.172392741,-0.232459798,0.162574127,0.117180102,-0.22805728,0.155740216,0.150876135,0.120326452,-0.292987943,-0.166029096,-0.33775112,0.156724438,0.300751925,-0.228723064,-0.156772479,0.217818856,-0.723214269,-1.03125,-0.153809443,-0.142574161,-0.482700884,-0.0462769568,-0.128900379,-0.15236257,0.0060841809,0.733398438,-0.100323014,0.458248198,0.000292567653,0.357421875,0.166992188,1.09375,-0.183609158,0.081302762,0.491260588,-0.92578125,-0.617915809,0.439469814,-0.146985859,0.167250976,0.128374308,0.221559644,0.0369148701,0.509986758,0.00518792076,-0.108656295,-0.00850434788,0.135461301,0.198725641,0.012245426,0.191381425,0.116505668,-0.338955313,-0.302794158,-0.23093164,-0.24712798,-0.397724271,-0.342825681,0.00937319174,0.23380892,-0.313768685,0.379731417,-0.081045866,-0.28325507,-0.116913803,0.0738624036,0.909667969,-0.271376669,-0.116911352,-0.0337973759,0.0888285488,0.159732237,0.566623271,-0.164540395,-0.0190576371,0.294917107,-0.478388786,1.1171875,0.388596743,0.350740492,0.272458851,0.247023299,0.0222760923,0.492759138,0.208958745,-0.00139532157,0.124555603,0.237818211,0.491899341,0.442499995,0.450113922,-0.125606015,-0.254895508,0.0661832914,-0.0776001289,0.344573826,-0.182070449,0.158184811,0.377663344,0.0205529537,0.266556889,-0.447523892,0.381949335,-0.23581028,0.502790153,0.150847048,0.495768219,-0.0990616754,0.513762712,0.0394420139,0.086962305,-0.561562479,-0.00945137069,-0.186526582,-0.33203125,0.183101401,0.0820290968,0.130404875,-0.146924511,0.214786634,-0.168977588,-0.0839617848,-0.188948959,0.252934009,-0.448245615,0.160173908,-0.265616238,0.545435846,-0.357541591,0.0330363847,-0.0878868178,-0.290961832,-0.185541376,0.292900383,-0.101795234,0.428609908,0.208040178,-0.178273231,-0.0803516507,-0.598437488,0.0871750787,-0.0576106608,0.76171875,-0.464984268,0.685329854,0.0155508658,0.146000758,0.311420828,0.315315664,-0.102724791,0.112655684,0.434967041,-0.240205452,0.244615182,0.435466319,-0.450207382,0.296908677,-0.480979562,0.671316981,0.0861562788,-0.0015287603,0.395146132,0.0484412424,-0.00657771202,0.316298932,-0.149357736,0.115959033,-0.245052695,-0.210681468,-0.0847460032,0.335949868,-0.279163718,-0.24508588,-0.634440124,0.15234375,0.354366988,0.138177231,-0.389584184,0.15233615,0.588224113,-0.246084541,-0.382140636,-0.82421875,-0.570570767,0.665039062,-0.444025725,0.231941491,0.263623834,-0.152842522,0.0356313884,0.28515625,-0.0100470288,0.0268359371,-0.320349902,0.305582345,-0.0792426318,0.534432888,0.471594781,0.00169759686,-0.0098393131,-0.263613999,-0.168370381,0.560644507,0.0784057602,-0.524564326,-0.0229039844,0.0649511591,0.579603016,0.0395165049,0.355544508,-0.430902511,0.142533973,-0.0925051272,0.116249233,-0.505964398,0.0971809775,-0.103247613,-0.604296863,0.582868278,0.0367461108,0.159649611,0.0275476165,-0.180714354,-0.00724812225,0.367127955,0.290010989,0.451148897,-0.271336645,0.0423588343,-0.251921117,0.0804741681,-0.298772454,0.232008919,0.087155208,-0.145478532,-0.42249307,-0.765625,0.341859549,-0.234318182,-0.10081663,0.0563855246,-0.028971225,0.0764179975,-0.11278718,0.327159405,0.310425878,0.0345354043,-0.38047424,0.198764592,-0.00442797504,0.119470969,0.0930252969,0.58984375,-0.136714429,0.435514331,-0.0611835793,0.00384992454,-0.00590755371,-0.00625819527,-0.297917187,0.345803469,0.0847080052,-0.419337749,-0.0962092057,-0.3720254,0.35141781,0.9921875,-0.529049277,-0.439735025,0.441681534,0.0315014236,0.047166694,-0.519380987},{0.13574553,0.32416615,-0.35933837,0.30957717,-0.23636861,0.13331302,-0.32523325,-0.15622589,0.08079033,0.03701552,-0.01060956,0.11020637,0.05610318,0.18163371,-0.26662436,-0.16209276,0.5431899,0.07395546,0.15765966,-0.51571727,-0.1323697,-0.6795177,0.12398279,0.51314604,0.41490152,-0.09542755,0.29869792,0.10273033,0.25021076,-0.3671094,-0.27526987,1.0625,0.09059662,-0.07543121,-0.355484,-0.6021959,-0.6021205,-0.02869187,0.08863805,-0.2917435,-0.41218856,-0.01928383,0.00539946,0.21385306,-0.37891674,0.6044922,0.3204864,-0.19823559,0.09771957,-0.28702217,-0.35741177,-0.32903096,-0.3242597,-0.19578774,0.25016734,0.6224662,-0.07741113,-0.32908303,0.09911081,-0.21821289,-0.74822444,-0.00620316,-0.7386364,0.93359375,0.1528287,0.08644503,-0.0729925,0.49688947,-0.5402583,0.1449628,-0.36422294,-0.17581275,0.26763391,0.19825266,0.04617426,-0.17094749,0.12892748,0.32234654,-0.02352959,-0.28121406,0.65625,0.07425248,-0.4258451,0.0235211,-0.03967991,0.20947886,-0.1772697,0.18605128,-0.22258227,-0.18999979,-0.5355434,0.00452504,-0.45707667,0.09847107,-0.06445186,0.23388103,0.04198747,-0.12183034,-0.8261719,-0.42695314,-0.06518758,0.74921876,0.21434131,0.13866366,0.2576243,-0.0702977,0.10600321,-0.06173413,0.8804687,-0.314459,0.08277828,-0.01030988,-0.20256518,-0.2289912,-0.5530599,-0.13529871,-0.08324082,-0.02105002,0.05249832,-0.18075323,-0.14695142,0.02672643,-0.01317833,0.5940755,0.18907419,0.30752492,-0.30559763,-0.14405912,0.0404086,0.15086061,-0.42579514,0.39245385,0.17728855,0.09638987,-0.34189454,-0.5839844,-0.14352645,0.15577476,0.03223508,0.58584046,0.5047043,0.5184896,-0.2850562,0.16799247,0.5863598,-0.07152268,0.06291277,0.05340144,0.01639177,0.11761304,-0.07762543,-0.38673043,0.19466506,0.19232254,0.41867405,-0.05566967,-0.28027797,-0.86035156,-0.06564803,-0.3905816,-0.20463313,0.3700484,0.0431801,0.45463592,0.12438866,-0.3554175,-0.07029066,-0.42672503,0.01223237,0.55403644,0.410721,-0.16842082,0.1655395,-0.21829265,-0.08429977,-0.03544234,0.3240673,-0.03192746,0.06693526,0.08367229,0.11736064,0.14688896,-0.42789522,0.11151145,0.06857456,0.33674568,-0.23930432,-0.17981714,-0.96484375,0.51953125,-0.22171496,0.08353166,-0.08444154,0.2172829,-0.1460403,-0.17182992,-0.29878327,-0.27837732,-0.05979857,-0.61709875,-0.26861626,-0.35338637,-0.48149762,0.81640625,-0.6158203,-0.70125,0.10075288,0.08542787,-0.1469446,-0.18066272,0.3054377,-0.32997188,0.10302012,0.18405944,0.02504342,-0.28119236,-0.07635891,0.23726088,0.23095338,-0.11259027,0.24357587,-0.01363015,0.46646583,-0.3626179,-0.04929867,0.08011685,-0.6106179,0.14452523,-0.05091077,0.1264563,-0.16639239,-0.14009449,0.16639383,0.2519765,0.43635884,0.35068983,0.11451491,0.03941775,-0.04583421,-0.4500749,0.57413906,-0.17918797,-0.18209004,0.23644744,0.13368803,0.11470804,0.00508024,-0.46069932,0.45957342,-0.32799438,0.2383229,0.07081819,0.4716616,0.19043435,0.10816866,-0.02416825,0.44259644,0.03520902,0.13134843,-0.23594545,0.11302365,0.66369045,-0.01361037,-0.11869322,-0.16798797,0.40806514,0.3523828,0.42585227,-0.24555019,-1.046875,-0.39055267,0.5216815,-0.21091393,-0.20759565,-0.3134934,0.7026367,-0.08616808,0.13908103,0.12364154,-0.18748838,-0.53534836,0.19289275,0.4433015,0.1987463,-0.27344552,-0.5740345,-0.10573495,0.08132082,-0.05382703,0.2822243,-0.15569453,0.59881365,-0.2505437,-0.834375,-0.05396051,-0.0455965,-0.27746582,-0.4117864,0.01676877,0.35745507},{0.296853065,-0.0525688902,0.579687476,0.509417832,0.328125,-0.620442688,-0.423014313,-0.0910817385,-0.419249117,-0.205482617,-0.0395330042,-0.054806035,-0.423959792,0.0108937891,-0.611486495,0.213817477,-0.149307773,0.270535618,-0.00471451459,0.182976723,-0.0824897885,0.0101282857,1.35546875,0.0042587854,-0.0817568973,-0.221189857,-0.336798549,0.0729854703,-0.101278372,0.0629065931,-0.082759805,-0.0507600978,0.250057876,-0.248358741,0.201562092,0.245612159,-0.0766544789,0.103479616,-0.00485939067,0.40161863,-0.0104009565,-0.337704301,-0.158127785,-0.609863281,-0.235251531,-0.34275049,-0.0153361876,-0.0830455273,-0.0318742059,0.401174843,0.192255437,0.338877827,-0.125086844,-0.451320976,0.0426903218,0.247548208,0.0449338332,-0.392690569,-0.0661473796,-0.372989923,0.0402719118,-0.0363769531,-0.575796247,-0.573834538,0.0127554694,-0.452142209,0.253994524,-0.552300334,-0.747656226,0.272492081,0.30558455,-0.432232469,-0.279296875,0.393431425,-1.5,-0.45021686,-0.372028321,-0.100805059,0.397477686,-0.760653436,0.00184144301,0.386270493,0.154298455,0.19729571,0.157685637,0.0439521521,-0.142151937,0.333946079,0.0732761994,0.0424729064,0.131273612,-0.519478083,0.555147052,0.0697725192,0.019528769,-0.343590558,0.0900737047,0.22841759,-0.374800473,-0.0405413285,0.271507829,-0.179196537,0.151850522,-0.129364341,0.358416468,-0.698730469,-0.281410187,0.0979027972,-0.355296701,-0.253940701,-0.144082859,-0.274450243,0.19776161,0.344716638,0.104959264,0.448851317,0.652113974,0.261750638,0.468678325,0.520919025,-0.536603034,0.57594651,0.225541711,-0.013315565,-0.493642777,-0.0519674197,0.147332668,0.180573002,0.347598553,0.274516374,-0.849330366,0.148486972,0.0705467016,-0.00219270377,-0.124864496,-1.09375,0.0060802442,-0.437109381,-0.00612349249,0.53327924,0.132822394,0.14160347,-0.542343736,0.249218747,0.42797178,0.158226147,0.491292328,-0.416568011,-0.653245211,-0.0400290266,0.817116499,-0.192886278,-0.0690624639,-0.0671435967,-0.394640774,-0.17966269,0.572343767,-0.498493314,-0.0279547665,-0.527307928,0.3515625,0.347688526,0.0214417651,-0.137674883,0.435569853,0.327195853,-0.0827134699,-0.120642141,-0.0286278035,-0.20499751,-0.390593618,-0.402112037,-0.103509508,-0.0486818738,0.255915016,-0.136727706,0.351439625,-0.545010626,-0.621946037,-0.642233431,-0.63671875,-0.115954198,0.0156111456,-0.899739563,-0.243622258,0.117908858,-0.400223225,-0.157222405,0.240760669,0.0234284755,-0.609169424,-0.0844094679,0.241650254,-0.088907823,0.0836993083,-0.0507538654,-0.582477689,0.136668205,0.126961067,-0.41603139,0.371188641,-0.317328215,-0.165527895,-0.316423744,0.0935157537,-0.114985704,-0.0235325135,-0.0332162678,-0.088145107,-0.460701555,0.565429688,-0.121134438,-0.0720371455,0.351501733,-0.455915183,0.000206104261,-0.147066772,0.783854187,0.0244356748,0.364194572,-0.672526062,0.054568097,0.0712826252,0.304613799,0.331938624,0.622233093,0.136248097,0.645909905,-0.0722535476,-0.0104252845,0.168968678,-0.125347733,-0.0343940705,0.173299938,-0.117979713,-0.807812512,-0.505208313,0.127477169,-0.433035702,-0.412230194,0.412137389,0.0327587165,-0.350655705,0.130881831,-0.177754715,-0.551192462,-0.0830030218,0.0653895661,0.520275295,-0.167990178,0.0178691372,-0.122047961,-0.100629516,0.0565214008,0.460617602,-0.19335787,-0.84765625,0.00147017522,-0.0381007418,-0.533203125,-0.622121692,-0.311610073,0.113040052,0.308459371,0.0546435453,-0.167959645,0.232956141,-0.892968774,0.339771867,-0.046410393,-0.77734375,0.271449,-0.0120163923,-0.289998204,0.110072687,-0.143047109,-0.052294068,0.0572603457,-0.108187877,-0.24120447,0.119301371,0.626644731,0.479199946,-0.0942278579,0.148903936,0.276315778,0.0302975904,-0.087382704,-0.529541016,-0.0956939012,-0.406135857,0.0478487536,-0.00923980679,-0.344597578,0.070044972,0.30471471,0.208963916,0.230412632,0.169373676,0.228482917},{-0.38146973,0.23478271,0.04003268,-0.20357974,-0.0377478,-0.421875,-0.00419004,-0.42554098,-0.29869646,0.19434597,0.02167521,-0.40638125,-0.18414377,0.07302611,-0.11913926,0.93359375,0.22083919,-0.30586642,-0.18011436,-0.10127595,0.27931082,0.37009877,-0.13869435,-0.09229665,0.04928153,-0.52154875,-0.14799067,0.34862912,0.3524289,0.00781166,-0.1225165,0.0851708,-0.03967378,0.18701002,-0.04283299,0.27342594,0.85807294,-0.08425175,0.23190631,0.18356511,0.45014223,-0.5059691,0.8720703,0.18261196,0.72558594,0.11041088,-0.04296959,0.05283573,-0.51778847,0.12032668,0.07837231,-0.16308287,-0.62120867,0.03000245,0.3692848,0.29208857,-0.22158332,-0.02056828,-0.08347529,0.06279127,-0.09005253,0.04246457,0.34161586,0.07953795,-0.05212127,0.62630206,-0.49510732,1.0546875,0.3670842,0.33199677,0.09181135,0.2505983,-0.05247658,-0.09910261,-0.19877984,0.12806948,-0.31547096,-0.34371966,0.14353257,0.033959,-0.25996095,-0.3691255,-0.6629136,0.66189235,-0.15140669,-0.0783406,-0.23138864,0.08788972,0.05090132,-0.14554861,0.06362778,-0.39763743,-0.28413075,0.1113327,-0.0768575,0.05665502,-0.27060372,-0.14792745,0.07662746,-0.44915575,-0.19831377,-0.03094257,-0.01994555,0.098874,0.24025306,-0.16309318,-0.1057549,0.00639229,0.44161186,0.06372736,-0.3359692,-0.3046562,0.08301389,-0.1269042,0.3887057,0.63375,-0.17428285,-0.8125,0.17143302,0.6102431,-0.12344138,0.13085938,0.5422454,-0.15082021,0.4716797,-0.13715667,-0.1904673,-0.434296,-0.02009122,0.09029455,0.6164551,-0.02586274,-0.0619026,0.00660165,-0.15530226,-0.24555533,-0.5536719,0.54466146,0.19919771,0.34577888,0.08641257,1.1484375,0.42290163,-0.03661106,0.09083994,-0.47602227,-0.33001822,0.39929956,-0.371129,0.32506794,-0.41810346,-0.29492188,-0.00287445,0.51776415,-0.16940396,0.26454157,0.14306992,0.2635462,-0.20796852,0.30536127,-0.05807207,0.26951942,-0.21300368,-0.2616874,-0.25881696,-0.11326015,0.2889982,0.00378037,-0.33195502,-0.2694718,0.05391444,-0.34057757,-0.21828264,0.1767288,-0.9505208,0.02297917,-0.07396609,-0.14157985,0.16741695,-0.01293556,-0.18158597,0.11355492,-0.08645877,-0.05471527,0.04724945,-0.21484852,-0.31060132,-0.521875,0.04128097,0.20411102,-0.38162714,-0.289035,-0.02861361,-0.0339741,0.09419481,0.31352478,-0.23044558,0.30168363,0.20209938,-0.29294753,0.21294014,0.34170586,-0.0334564,-0.24459152,0.36591703,-0.1860599,0.18119673,-0.04419627,0.23089507,0.09813505,-0.28322825,-0.26857123,0.04076094,-0.6402853,-0.02372096,0.18703079,-0.84375,-0.4306449,-0.13274032,-0.44357052,0.06079577,0.07614962,-0.4794922,0.01223728,0.16649015,0.7480469,0.23290293,-0.07450863,0.8929688,0.11322118,0.09940264,0.5617378,-0.675,0.23775181,-0.07321911,-0.05459991,-0.22796844,-0.2597898,-0.15136719,-0.04356387,-0.20692539,-0.99609375,0.08760142,-0.00550705,-0.21919796,0.7001953,0.3777613,-0.2956943,-0.0793765,0.21227108,-0.09549352,0.22753541,0.27338398,0.42869872,0.13182662,0.21327914,0.00519413,0.16750646,0.16841248,-0.725,-0.7060547,-0.18216194,0.09861337,0.22609837,-0.18842931,0.60907453,-0.19669753,-0.02322189,0.02573454,-0.5452724,-0.3437913,-0.10057274,0.34637398,0.14398791,0.94140625,-0.2793017,-0.01657894,0.21730964,-0.4247548,0.02496058,0.30664062,0.48318616,-0.4343429,0.15721466,-0.06789035,-0.0410151,-0.31241274,-0.07590411,0.027055,-0.22367585,0.00827751,0.19583803,0.00292608,0.21433738,0.04100575,0.09982926,0.04175554,-0.04445878,0.45210892,-0.24284492},{-0.62022567,-0.43864706,-0.18115732,0.5842538,0.01772013,0.26963323,-0.6308594,0.18163015,-0.5608259,-0.12854171,0.09769285,-0.13384683,-0.1149469,0.2821159,0.02411641,0.5933017,0.20453487,0.42770183,0.13729995,0.05625169,0.38576034,0.15717216,0.746875,0.20404981,0.01114957,-0.03330157,0.44407395,0.47934502,0.828125,-0.19192931,0.4684304,0.34484863,0.43817514,0.3594081,-0.11891996,-0.42586392,0.3818007,0.16599558,-0.31519276,-0.36203024,-0.64453125,-0.14397338,0.63820684,0.32229415,-0.18550876,-0.10813688,-0.30077225,-0.27149644,0.36715245,0.04869681,-0.33693346,0.22021006,-0.09539602,-0.15328225,-0.2436959,0.3340306,0.29867062,-0.07691419,0.30467117,0.16742142,0.23571879,1.0195312,0.21239299,-0.06419731,0.02366326,-0.01476269,-0.1943436,-0.18367876,-0.5992399,-0.05641621,0.10815591,-0.59778225,1.046875,0.1552487,-0.6714614,-0.2646197,-0.03796966,-0.28424558,-0.24971528,-0.41753724,0.06592031,0.04426628,-0.1430875,-0.08057526,0.22550118,-0.23108362,-0.3935,0.3027898,0.35547602,0.84277344,0.7335069,0.36924252,0.11711314,-0.5116711,0.32418188,-0.23039646,0.28134885,-0.418846,-0.0132037,0.37269533,-0.48046875,-0.31641287,0.11182813,-0.01773887,0.0737517,-0.18065335,0.6856142,0.7659375,-0.7998047,-0.33392975,0.28326917,0.6295956,0.12897135,0.15966481,0.41290566,-0.2801524,0.07884083,-0.22215636,-0.46588543,-0.35434917,-0.09205376,-0.20789513,-0.31626058,-0.3301955,-0.368125,-0.37692353,0.10299862,0.4757992,0.3057792,-0.02670319,-0.13087504,-0.5656672,0.21477865,0.15330973,-0.4206873,0.08324014,0.1640053,0.49889743,0.33587083,-0.14842781,0.6870117,-0.49762562,-0.23197761,-0.01305972,-0.20607679,0.08105209,-0.14551745,0.23536177,-0.51191163,-0.08340856,0.09496512,-0.93359375,-0.49423042,-0.00428225,-0.6134868,-0.04052152,-0.07619384,0.21890965,0.04256077,-0.07371369,-0.2978006,0.39732444,0.1748278,0.10714899,-0.04872629,0.04075594,0.27231914,-0.30768782,0.35157335,0.14160018,0.75039065,-0.36912394,0.00443886,-0.11885815,0.28394005,0.13382103,0.54673207,0.0455335,-0.75958806,-0.15568401,-0.39745456,-0.00274368,0.7022569,-0.45987603,-0.07253133,-0.03477975,0.10059634,0.32918364,0.05441363,0.3691349,-0.3104707,-0.3593113,-0.43340018,0.4050323,0.6224564,0.19921264,0.500032,-0.13913143,0.18505313,0.44485393,-0.5774515,0.17922306,0.25019294,-0.12696852,0.26158258,-0.3008159,0.90722656,-0.01600455,-0.91796875,0.3693198,0.25983104,-0.47731,-0.92838544,0.06012736,-0.13766208,-0.07734046,0.15477967,0.42729336,-0.24410918,0.12741761,0.31246066,1.0065104,0.00224731,0.11911643,0.11228499,0.36207932,0.5563998,-0.48627067,0.03800448,-0.43148148,0.11225014,-0.2378008,0.01676172,-0.07515951,0.79129463,-0.4266493,-0.15425639,-0.34867144,0.00877282,0.20597169,0.12258103,-0.125512,-0.7910156,0.2616718,0.16848847,0.01063793,-0.12577261,-0.2615379,0.16696112,-0.01027677,0.65722656,0.54416454,-0.30090332,0.5389395,-0.09053694,0.47083333,0.23043796,-0.44331646,-0.47091123,0.12737618,0.02478704,-0.01660399,0.14212094,0.59752154,-0.2950583,-0.34666872,-0.02428596,0.37487793,0.2357688,0.1908647,-0.5622052,0.41009545,0.02141996,-0.11815095,0.2456821,0.10520032,-0.14202945,-0.3282559,-0.4705946,0.6351929,-0.5903033,0.03675211,-0.21626359,-0.2510028,0.2162248,-0.45891988,0.13767383,0.46644175,0.10740574,0.0500458,-0.00457464,-0.14644256,0.22551188,0.05115419,0.01493104,-0.12158577,0.29879662,0.25010478,0.40713015,0.00978978},{-0.156248704,0.734730124,-0.141085938,-0.419613481,-0.0575027056,-0.235416025,-0.118349552,-0.0594670661,-0.155256778,0.152347967,-0.710546851,0.337039262,0.0971821547,0.216322958,0.138674289,0.131822854,-0.733506918,-0.176745757,-0.24362959,0.164463595,-0.195272639,0.523343384,0.505811751,0.328940958,0.158643454,0.145482659,0.515830576,-0.295910805,-0.199720725,-0.61895752,-0.0471204259,0.528070509,-0.217259318,0.0110525498,-0.0101723727,-0.0401864089,-0.181661859,0.259770393,0.351521224,0.0917910114,0.481344789,0.0824908093,0.356352448,0.146494895,-0.100782409,-0.00942907389,-0.177705407,-0.166987658,0.248401597,-0.281432301,0.460658491,0.368132859,0.533043027,-0.283138007,0.0757551044,-0.0482093133,0.112778462,0.135180965,0.0247241724,-0.311486512,0.688616097,-0.121107854,-0.0906031057,-0.141601562,-0.00148960843,-0.177729577,-0.185027555,0.153837323,0.154822856,0.0690804049,-0.331040531,0.0249518622,-0.391360044,0.601384938,0.0110438205,0.053587079,0.166543722,0.119857602,0.0886311084,0.391582608,0.348508716,0.611607134,-0.566796899,0.147981495,0.0532389134,0.270561725,-0.557942688,0.818142354,0.637852848,0.0304943379,-0.326227039,0.0514023937,-0.0455357246,0.329064131,-0.25203073,0.00890330784,-0.133294359,-0.955729187,0.416836262,0.0164409317,0.252933472,-0.0449334458,-0.549804688,0.369953245,-0.0588019416,0.0928137302,-0.463500977,0.0666665062,0.414049566,0.0506511852,0.106940158,0.00144685828,0.0598353557,0.264695913,0.280277848,-0.439133227,0.0644395649,0.293984026,0.398390621,-0.21772702,0.037592113,0.265652776,0.0703819692,-0.250904441,0.31058073,0.0847388655,0.720052063,0.198712826,-0.61328125,-0.287071079,-0.378779799,0.0906135365,-0.000604369678,-0.199173912,-0.0739905238,0.344783396,-0.430718303,-0.102298215,-0.208459049,-0.0343146995,-0.231463626,-0.441459775,-0.013099541,-0.0248729009,-0.125618353,0.0473756082,-0.237270519,0.312449813,0.4381724,0.277416855,0.543497264,0.272579074,-0.326200962,-0.345392406,0.676513672,-0.0788337514,-0.651855469,0.650173604,0.9921875,-0.440584391,-0.581229985,0.215244398,0.463651776,-0.430518299,0.0172367301,-0.444394439,-0.303692281,0.252044588,0.0227332357,-0.170934454,-0.350695431,-0.0575112551,-0.269444793,0.27923584,0.436797738,0.0915370584,-1.046875,-0.285211295,-0.0795744583,-0.554804087,-0.376986355,0.532513797,0.103980139,0.0788370743,0.0109595032,0.403218269,0.814732134,-0.207924068,-0.188003615,-0.0652468577,0.265586585,0.104997166,-0.901785731,0.355508596,-0.110606216,0.14455907,0.556895375,-0.115928426,-0.18016614,-0.547162235,0.043083027,0.167502627,0.831250012,0.144510686,0.0174395051,-0.431458563,-0.113036118,0.0239372011,-0.067890957,0.246131077,-0.0433464125,0.212380022,0.0621271394,-0.352347791,-0.39047721,-0.18999207,0.303776056,-0.34967792,0.294717193,-0.848772347,0.0944959819,-0.337069988,0.124472506,0.191885084,0.3125,0.182107672,0.26946336,-0.238217056,-0.289204538,0.719460249,0.0553987846,0.0739868656,-0.445003241,0.157756731,0.255803466,0.0852637291,0.191435248,0.25378868,0.166992188,-0.184100807,0.188403472,-0.00778771564,0.233386025,-0.517661214,0.332043082,-0.16945596,-0.194875032,0.183605358,-0.23380962,0.0142512545,0.00460685417,-0.10951928,-0.211260349,0.146935537,0.213886485,0.18496865,0.0419869609,-0.107183278,0.34466517,-0.0878828391,0.175771371,0.269597381,0.157221839,-0.106150806,0.263566047,0.20309788,0.130999938,-0.648733437,-0.0727490485,0.28890413,-0.00962821487,-0.338025331,-0.8125,0.099130258,-0.0153177409,0.380631506,-0.505574524,-0.257640451,-0.288947314,0.443303317,-0.254808158,0.0506534539,-0.289993852,0.0331007354,0.427929699,-0.343718082,0.00356024457,-0.131304771,-0.223039344,0.0180630665,0.265782297,-0.318230867,-0.566119015,-0.166930929,-0.0287319385,-0.48063615,0.102063917,-0.0543036871,-0.54440105,0.275287837},{0.195351943,0.178700522,-0.33203125,0.374931663,-0.116214305,0.10128247,0.0176023003,-0.257718056,-0.0186832771,0.786132812,0.255947918,0.159817874,-0.459908158,0.491277814,-0.674547672,0.230980426,-0.0823649317,0.53338623,0.241095126,0.465901703,0.176667795,0.581686556,-0.0121796709,0.0501877442,0.194764555,0.0100729363,-0.590064883,-0.68359375,0.479243904,-0.0791292638,-0.505726218,0.182528257,0.304709435,0.285055608,0.479845405,-0.16452466,0.147453249,0.324150205,0.411871821,1.05859375,-0.24783735,0.4756836,0.143596709,-0.41895169,-0.219160259,-0.900781274,0.384403944,-0.180134937,-0.300701916,0.573508501,-0.179229051,-0.0822753906,-0.569953322,-0.351711392,-0.0768741444,0.229505137,-0.293067694,0.186559141,0.686789751,-0.00356735964,0.0236020405,0.406052291,0.193810403,0.0521660373,-0.109369501,0.072733663,0.148492128,-0.114458829,0.343725801,0.358293176,-0.395134956,-0.206956714,0.357228398,0.0700005814,-0.37690711,-0.400309235,0.0478395671,0.387775362,0.600661039,-0.0410185009,-0.93359375,-0.0898054093,-0.0735073611,-0.145006195,-0.208043054,0.503946543,-0.250562012,-0.532689154,0.239708886,0.572102845,-0.000109567147,0.567708313,-1.203125,0.221669137,-0.184061646,-0.251008064,0.264693439,-0.285159916,-0.237363428,-0.377949417,-0.273319781,-0.10055916,0.138190508,-0.227079764,-0.91796875,0.206612274,0.261767566,1.171875,0.000263858499,-0.158172056,-0.398103863,-0.408074468,-0.0166821834,0.174195215,0.206485942,-0.0241811816,0.386510015,-0.194253758,-0.420818001,-0.475632429,0.256010145,-0.013761661,-0.871419251,0.166966915,0.709127307,0.197740346,0.363504469,-0.563964844,0.588778436,-0.460339606,-0.0837072432,0.167930767,0.233362675,-0.0446328595,-0.0226764549,0.0331224315,0.149383217,-0.199763954,-0.318491995,0.205541506,0.463742912,-0.127017245,0.201171875,-0.226649493,-0.221061617,-0.0866535231,0.91015625,0.453332961,-0.1953623,-0.22318846,-0.734375,0.300716996,-0.0850057974,-0.126084432,-0.230876312,-0.0668858737,-0.59967041,-0.169387013,-0.562598884,-0.348650098,-0.117398068,-0.0345487148,-0.642578125,0.368050724,0.395414799,0.428013384,0.450387537,-0.0193504542,-0.0951916128,0.0874308497,0.904296875,1.3984375,0.41026327,-0.0256733336,0.650390625,0.0345158353,-0.440082103,-0.0649127215,-0.463609368,-0.0976989269,-0.491155356,-0.25979495,-0.196797982,0.162472889,0.371199816,-0.833593726,-0.591889858,-0.234899238,-0.0502564199,0.122345187,0.351611942,0.0550495349,-0.136278346,-0.484298408,-0.323081583,-0.0368698873,-0.269388825,-0.669819057,0.31057477,-0.0744505078,1.01953125,0.240195081,0.0414984338,0.559927583,0.0552040748,-0.139616892,0.166992188,0.255813241,0.0461033098,0.148412928,0.0443128124,-0.423620343,-0.177237123,-0.273327917,-0.0663938224,-0.235390082,-0.662860572,0.0511814654,-0.553710938,-0.122807339,0.48461318,0.384855956,0.324176908,0.46164152,0.21327132,-0.348566979,0.0783597529,-0.281276673,-0.22701624,0.15478152,-0.0455422848,-0.502514958,0.31826812,-0.311582893,-0.137697428,-0.160144076,0.0513515882,-0.27250874,0.869140625,0.07687857,-0.00814182404,0.391622335,-0.00988198351,0.666015625,0.180628091,0.225515217,0.126902238,0.685546875,-0.113269232,0.0279093273,0.478040546,0.18014583,0.0795794353,0.110390685,0.723214269,-0.390601337,-0.070059523,0.120808989,-0.414963156,-0.638139188,-0.0341263488,0.610909581,0.0351537988,0.0268641878,0.0886011198,0.220155612,-0.146095186,-0.193382397,0.257804453,0.418839753,-0.126957715,0.0898565799,0.519839644,0.306719154,-0.586425781,-0.0486976914,0.0764274448,-0.427463651,-0.582165956,0.0754339695,-0.156707808,-0.122306675,0.143094495,-0.516659021,-0.83203125,-0.313521296,-0.199669778,0.429394126,0.131343335,0.0375725292,-0.0347415917,-0.164945379,0.525520861,-0.151843891,-0.0138876112,0.0671800897,-0.610546887,0.208355263,-0.44708395,0.125724658},{-0.01079835,-0.3493425,0.4596242,0.12698571,-0.35552138,-0.13079304,-0.1591548,-0.4032583,0.1152221,0.58207834,0.1688903,-0.09835732,-0.01959017,-0.22791299,-0.9003906,0.31533256,0.16361985,0.30072984,0.33361235,0.30378023,0.31441396,-0.34179688,-0.603125,-0.67438614,-0.13034673,-0.01927194,-0.2328717,0.04664806,-0.5896701,-1.078125,-0.01928908,0.4248047,1.0859375,-0.17436026,0.05662109,0.1255237,0.210946,0.00714201,-0.06810322,0.37782314,0.19232237,-0.00436032,-0.33797553,-0.07743794,-0.33293605,-0.08180004,0.6051136,0.3953912,0.55352783,-0.07056958,-0.16702804,0.40009093,0.08622194,0.38360822,-0.38466284,0.08469163,-0.15131351,0.09037051,-0.30866608,0.24505615,0.00975128,-0.5321691,0.0614651,-0.10571588,-0.02717885,-0.35338733,-0.03782462,-0.984375,-0.03831052,-0.27735382,0.07012813,-0.6754092,-0.56069714,-0.08546648,0.31442112,0.3972801,0.15278827,-0.45498934,-0.18458882,0.10230593,-0.5012286,0.14260076,-0.22017689,-0.02444144,0.61385995,-0.05333353,-0.06814542,0.27833447,-0.48430523,0.3955078,-0.17039594,-0.01123731,-0.07370153,-0.09568182,0.24519907,0.07007466,0.43247017,0.4636189,-0.32127318,0.11569063,-0.29490957,0.36123833,0.7861328,-0.17329162,-0.12078656,0.18161649,-0.21525502,-0.22373454,-0.58606774,-0.08520225,-0.26761526,0.54462594,-0.03324326,-0.04517177,0.16458273,0.34468883,-0.02990099,-0.30060187,0.27438644,-0.10179874,0.14361651,0.80887276,0.48980713,-0.5253906,0.20364933,0.10991625,-0.7449049,-0.23292814,-0.24221444,0.23097366,-0.01035445,-0.38597035,0.05661176,0.03531922,-0.06149711,-0.03302433,0.1074032,0.42265624,0.00591155,-0.29955888,0.07271117,-0.15916172,0.60058594,0.04240835,0.17721431,0.06561938,0.6542969,0.42966726,0.3418181,0.6113281,-0.23339844,0.6110026,-0.593471,-0.18557377,-0.5669779,-0.26077,-0.4172282,0.24886508,-0.46691406,-0.2412125,-0.03516518,0.03829576,0.13526346,-0.06834804,0.04565679,0.02471651,-0.91796875,-0.00911362,0.38314262,-0.39730558,-0.03334034,-0.07443519,0.18121524,-0.4081496,-0.12834741,-0.07568722,-0.27610978,-0.43743,-0.03031677,0.16648307,0.18764924,-0.47692123,-0.29492974,0.68880206,-0.4342138,-0.42852145,0.42662466,-0.03906909,-0.00693563,0.15033948,0.28512844,0.41888428,-1.1210938,0.20019794,0.4376831,0.4647417,-0.00112432,-0.35918152,-0.32605195,0.130348,-0.30474642,0.06193775,-0.21290718,-0.6328125,0.70134944,0.13674864,-0.06219338,0.19968109,0.31247142,-0.09112089,0.12012981,0.29486468,-0.16261396,-0.7566964,0.43449682,-0.50478077,0.37004742,-0.0196329,-0.18163289,0.28617117,-0.2744439,0.12281053,-0.00600695,0.09886004,-0.23146816,-0.06516961,-0.12694417,0.5716751,-0.26349604,0.01091973,0.68828124,0.09571792,-0.48177084,-0.1943604,0.07128854,0.0512888,-0.12054503,-0.12836888,0.24512643,0.3143446,0.06837773,-0.064697,-0.04620711,-0.48020917,-0.13618663,-0.03478109,-0.31943044,0.07642967,0.39951923,0.3527413,-0.40906322,-0.31446093,0.30865264,-0.2696262,0.55831474,-0.16262175,-0.48209634,0.341181,0.06541661,-0.32825834,0.4685958,-0.09183165,-0.28515625,0.35159597,0.15967925,-0.13728943,0.6017578,0.0058825,-0.22307335,0.02690924,-1.0507812,-0.19781701,0.62646484,0.2358891,0.20071316,0.21929996,0.1037171,-0.3561914,-0.0252856,0.29000443,-0.03296043,0.22304186,-0.23678559,0.6041667,0.1640317,-0.08156191,-0.5024634,-0.17380731,-0.1787208,0.1084013,-0.47138935,0.00202744,-0.3954122,0.32823557,-0.17870723,-0.0599748,-0.51145834,-0.08178347,0.35337844,0.16649677},{0.20703125,-1.6171875,0.0515211597,-0.113830566,-0.00985003356,0.0536123365,-0.177250743,-0.45482406,0.0239781328,-0.255739182,0.904296875,-0.424715251,-0.00513356458,-0.281774551,0.689062476,0.0532851964,0.12303368,-0.505859375,-0.368349493,-0.00533860223,-0.181616768,-0.186998993,0.345804989,0.024951417,0.496916115,-0.163038373,-0.382847369,-0.131331012,-0.340899259,0.215367869,0.153306723,-0.0663978308,0.400217563,-0.631103516,0.0815128833,-0.208967432,-0.446348846,-0.298779637,-0.365461469,-0.245549664,-0.179281697,-0.474308908,0.183053017,0.468833476,0.0413534902,0.329455376,0.0295296647,0.125915527,-0.415984452,-0.184012637,0.252322048,0.205622464,-0.467541605,0.0165204853,-0.158723265,0.202668771,-0.48248592,0.557154596,-0.190242454,-0.0786246657,-0.198270991,-0.325844079,-0.236362711,0.112303145,0.109390773,-0.0773854777,0.278480321,0.0957066789,-0.12796098,-0.0204629228,-0.135256082,0.288872093,0.0627842769,0.546076,0.433686763,0.151301622,-0.068367213,-0.012062748,0.131370842,-0.30449909,0.204135492,-0.17872785,0.499674469,-0.123066507,0.444369048,0.0771728531,0.0474897213,0.962239563,0.320181876,0.27943936,0.302602828,-0.25779292,0.335778713,0.456163198,0.267578125,0.324204803,0.244173914,-0.373033106,0.0299462266,-0.565887749,-0.383864194,0.114041433,-0.0400390625,0.0868946016,-0.0482626893,-0.496593744,0.50018847,-0.0311141778,0.229006082,0.305692911,0.846679688,-0.193820208,-0.93359375,-0.180119246,-0.388190269,0.235447392,-0.422632337,0.1332874,0.314595759,0.342727304,0.193827853,-0.0634859353,0.206582442,0.409560025,1.01250005,-0.252844423,-0.0678832456,0.330037564,0.372227818,-0.311546683,0.543087125,0.571928859,-0.0915571079,0.556229413,-0.511247277,-0.0834992975,-0.0313895531,-0.0923002362,0.0969236195,0.256867081,0.346717238,0.235831574,-0.444198072,0.215320811,-0.0325318053,0.410907447,0.046793621,-0.185988575,-0.397351593,-0.235851198,0.427896023,-0.65630579,-0.10400255,0.716796875,-0.359375,-0.134781435,0.127894625,0.387634277,-0.102267504,-0.0866448656,-0.0450035669,0.171426699,-0.0097072348,-0.0546993092,0.506347656,0.00260439189,-0.157742545,-0.154804155,-0.384720892,0.330956519,-0.284194052,-0.0304716714,-0.433250844,-0.235385776,0.154817715,-0.125780344,0.33971557,0.0344084837,-0.0555458218,-0.305653632,-0.829345703,0.332050025,0.367321432,0.275465161,0.000994129805,-0.174760133,-0.100543685,-0.426651001,-0.443719149,-0.127010688,-0.9453125,0.0230731014,0.097605072,-0.317258716,0.165087,-0.264567792,-0.0429755263,0.18413581,-0.632617176,0.36414212,0.137665883,0.0218492262,0.186385423,0.181472853,-0.152349845,0.178715304,-0.81640625,0.521321595,-0.507442057,-0.9453125,0.0325709097,-0.0713375285,0.610387743,-0.892187476,-0.300716013,0.228976011,0.400118083,0.0732444823,-0.265572906,0.470876724,-0.19586052,0.0651691407,-0.0595855303,-0.0494704992,0.23093912,0.0435882732,0.380018562,0.0852300376,0.373137712,0.0666076243,0.614200354,-0.0273055658,0.288938403,-0.396648377,0.0588433444,-0.30079174,0.0719894171,0.529980481,0.071803771,0.118905701,-0.170246422,-0.4306162,0.122782685,0.00397490757,-0.32811588,0.167451873,-0.66015625,-0.367006958,-0.153858066,0.231813639,-0.290924609,-0.248363167,-0.49428013,0.135201722,0.119836219,0.023808891,0.246068344,0.382148802,-0.28986761,-0.157697365,0.272585928,-0.210079744,-0.463724554,-0.610329866,-0.351523697,0.175279811,-0.351391852,0.579687476,-0.155233607,-0.151375636,-0.322165459,0.0557853393,0.178263605,-0.477997452,0.15436247,-0.0732301772,0.696289062,0.316292793,-0.239704177,-0.837890625,0.542812526,-0.0155156869,-0.188481331,-0.314444989,-0.240323782,-0.222138792,0.494312972,0.557864606,0.278225303,0.58203125,0.225520447,-0.0910983384,-0.132749364,0.150862947,0.244528472,0.380743504,0.694711566,0.830078125,0.229481891,0.322319865},{0.38083693,0.12483705,0.2070902,0.35742188,0.6643229,0.15773898,-0.20123269,0.01355075,0.4771525,0.11450379,0.26186946,-0.02473457,-0.06494799,0.46679688,-0.5667969,0.3827688,0.06220885,0.36710486,0.02498312,-0.11764862,-0.2256297,-0.13426934,0.43157038,0.0844659,0.36222705,-0.08663134,-0.09912026,0.45405352,0.08370946,0.07519241,-0.00544416,-0.00465824,0.81640625,0.23289517,-0.5230999,-0.46178618,0.06542508,0.5813519,0.21678643,0.23915428,0.13909833,-0.1173898,0.7753906,-0.09684111,-0.9111328,-0.50109214,0.11323354,0.9140625,0.51919156,-0.53675884,0.6188616,0.31448185,0.3446897,-0.03667535,0.56866777,0.02764576,0.3222373,0.25801137,0.5594866,0.18398812,-0.47764757,-0.29763392,0.7054688,-0.20598882,0.09471519,-0.22903292,0.22659618,0.45503944,0.12572755,0.23978366,-0.11787054,-0.11515055,0.10958209,-0.05261283,-0.16115251,-0.13823484,0.09615427,0.48722097,-0.1625708,-0.67460936,0.17088225,0.09692273,0.39331055,-0.56368095,-0.16605295,-0.3445638,0.12157536,0.48515972,-0.55095106,0.16844493,-0.2538416,-0.06807666,-0.11522344,0.7113416,0.15337646,0.157593,0.05660491,-0.6939603,0.20754406,-0.31056854,-0.01443785,-0.8385417,0.28033507,-0.38198063,0.8798828,-0.194789,-0.36081344,-0.25390625,0.11743599,0.1198822,1.1015625,0.12514718,-0.4144359,-0.4240839,-0.1137852,0.19145174,-0.2539934,0.02799186,-0.65262276,-0.1558129,0.39938837,0.08173648,-0.2909902,-0.0695361,-0.11747762,-0.30844516,-0.6243206,-0.04836732,0.23087278,-0.01391863,-0.3438531,0.32931104,0.2616267,0.87890625,0.47148436,-0.44996402,0.3596082,-0.9199219,-0.29108128,-0.5083008,-0.04619883,-0.18259186,-0.36422926,-0.31938165,-0.04738348,-0.11635997,0.07230245,-0.09663366,-0.15037292,-0.33003148,-0.49457467,-0.14642975,-0.1304193,0.41000977,-0.18847899,-0.4299469,-0.17728508,-0.06065626,0.01856343,0.32591894,0.50395167,0.2339903,-0.38406193,0.02505901,-0.442462,-0.53870416,-0.00350826,-0.8125,0.42562705,-0.76484376,-0.02443509,-0.44173178,-0.12847236,-0.07496212,-0.31243083,-0.44572535,-0.02708836,-0.12278843,-0.54673207,0.5241887,-0.32995516,0.12841085,0.3010465,-0.00982602,-0.12458313,0.13866399,-0.01475536,-0.29494363,0.26377964,0.27439898,-0.06739676,0.36414063,0.5917969,0.28511274,-0.05714581,-0.1047725,-0.32434326,0.25577468,0.73046875,-0.82533485,-0.12328286,-0.14011154,0.31255874,0.3153668,-0.21817565,-0.38182136,0.00735337,-0.181126,0.0815853,-0.0496654,-0.18557142,-0.13329515,0.47075814,0.4131067,-0.04191691,-0.12373383,0.2391983,0.16161856,-0.19721738,0.26739302,-0.17874418,0.73914933,0.20068458,-0.05910723,-0.09328091,-0.30079943,-0.23480374,-0.20215745,0.7488839,0.0917573,0.4587809,-0.04790626,0.3788553,0.28505152,-0.1547609,-0.27047434,-0.33588868,0.08958676,0.15430702,0.05728736,-0.09469644,-0.19332032,-0.11613683,-0.39826193,-0.15233555,-0.83496094,0.04918544,0.2646518,-0.5214193,0.04889774,-0.6344697,-0.1483044,-0.19143593,0.29107127,-0.17137581,0.5793586,-0.3613655,-0.13231379,-0.07881474,-0.13282582,-0.01834602,0.2986424,-0.16997102,0.46643984,0.661801,0.04498187,0.04262502,-0.47524992,-0.18308423,-0.1391698,-0.03026635,-0.2929451,-0.56889206,0.00664191,-0.03062113,0.34287232,0.26465878,-0.14161938,-0.09767056,-0.04733083,-0.04912844,0.27532977,-0.03203196,0.4197425,0.53094363,-0.12134046,0.1884499,0.1737903,0.06102225,0.1318512,0.02244097,-0.11158226,-0.08499845,0.18015113,0.02602109,-0.07010844,0.17722315,-0.10229151,0.15580346,0.11152696},{-0.28714767,0.55691963,0.13469854,0.29292297,-0.32812038,0.3797803,-0.21440092,-0.111584,0.4304529,-0.02292223,-0.11236559,0.26964614,-0.29003906,0.04457152,-0.33886343,-0.10323147,-0.55099237,0.28220895,0.6832031,0.07104349,-0.11450131,-0.44611564,-0.05102156,-0.43382505,-0.16741835,0.08450326,0.14917637,0.22757003,-0.07564086,0.04826623,-0.21283096,-0.04010057,0.34261718,-0.29880768,-0.24887255,0.16690181,0.33596048,0.4367415,0.32702,-0.20502661,0.171875,0.07442472,0.37121123,0.03438765,0.0642036,-0.05288567,-0.00269497,0.00381737,-0.23432553,-0.04739673,-0.70029634,-0.36796874,-0.25391304,-0.02779603,-0.09571934,-0.15955755,-0.01481431,-0.42693275,-0.5988898,-0.5273022,-0.04074791,0.05210833,-0.200625,-0.9746094,-0.235409,0.34597614,-0.30370268,0.04686096,-0.23730084,0.6502878,0.338871,0.1928962,-0.15771289,-0.6251221,-0.02393882,-0.02891302,-0.00137499,-0.25190964,0.24876879,-0.37789884,-0.05470133,-0.15337618,-0.9973958,-0.11088771,-0.23531076,0.55428684,1.0585938,0.09932395,0.3992874,0.01873417,0.02925397,-1.0703125,-0.023632,-0.39629835,0.8046875,-0.10345085,0.5867457,-0.22897638,-0.15848649,-0.25290838,-0.541324,0.04957664,-0.4940655,-0.00603735,0.01244833,-0.03651402,-0.31642443,0.17916104,-0.19922644,-0.79765624,-0.12792969,-0.3233652,0.22512564,0.24118009,0.2236956,-1.1484375,-0.8671875,0.07054094,-0.25379094,0.21289255,0.3328431,-0.2851634,0.78808594,0.5409405,0.1269218,-0.07324219,-0.15188745,-0.02605684,-0.12527552,-0.33851162,0.2930795,-0.7636719,-0.04512962,0.32621387,-0.13769953,0.6856771,0.06886078,-0.653125,0.35723022,-0.00324683,-0.43990073,-0.01639547,0.15714549,-1.015625,-0.69596356,0.08985426,-0.7567472,0.3338719,-0.05337729,0.10225797,0.6151138,0.05646135,-0.74323916,0.2910899,-0.25394732,-0.20512629,-0.19089106,0.12939712,0.40504262,0.02753455,0.10381237,-0.4618644,-0.05404715,-0.24549995,-0.51554364,-0.0594597,0.09128664,0.29094177,-0.22657032,0.12844047,-0.23490797,-0.24076195,0.10767347,-0.03673489,-0.7757161,-0.49293154,-0.01211791,-0.81427556,-1.25,-0.08371915,0.06111542,-0.21484102,0.2338206,-0.12388498,-0.28898615,0.04713966,-0.12038819,0.14794508,0.5071957,0.25010285,-0.13724144,-0.1328301,-0.10843568,0.02329865,0.11650988,-0.06336532,0.1747545,0.6528646,0.41208526,0.1019842,-0.17824936,0.08980916,-0.40309194,-0.15770955,-0.29480147,-0.10375393,0.34555212,-0.50384325,0.27930441,-0.39176252,-0.22071613,0.11080385,-0.29785156,0.02765803,0.23929398,-0.21731403,-0.36627296,0.14601229,-0.11454991,0.3106778,0.07396744,-0.4837036,0.11050913,-0.56589675,0.36114597,-0.25292176,-0.55314314,-0.551011,0.1103923,-0.36328125,0.3055617,-0.01663999,-0.5793527,0.6833882,0.18944015,-0.24605446,0.03059775,-0.5854252,0.18259713,0.2655978,0.15717193,-0.40632012,0.50531685,0.01938093,-0.10718966,-0.04794016,0.14110829,0.2783577,0.03857524,0.08961511,-0.4422673,-0.8660714,-1.03125,0.482371,-0.01056403,-0.2929911,-0.03099207,0.78515625,-0.53097874,-0.30269012,0.077355,-0.02643346,-0.35656488,-0.14746748,-0.0520962,0.07788492,-0.0105794,-0.14598332,-0.88671875,0.10886025,-0.2929002,0.06638651,-0.47924805,-0.34378368,0.17044243,0.29990947,0.05329935,-0.5245117,-0.00668352,0.19826066,-1.0989584,-0.7919922,0.33025014,-0.15717326,0.7142428,0.1342667,0.7924479,0.0572184,0.00371142,0.52679175,-0.01484744,-0.277331,-0.02809805,0.07347916,-0.88671875,-0.1821289,-0.13235265,0.02009928,-0.02587343,-0.64921874},{0.22409137,-0.06758858,-0.27551496,0.2202983,-0.18607281,0.6964286,0.31436604,0.33483073,0.11203291,0.00612405,-1.0390625,0.00531892,-0.36135137,0.38759276,-0.41613176,0.4590578,-0.2388605,0.00632163,0.3648897,-0.17035064,-0.39928043,0.02220051,-0.21682566,0.05753502,0.11158007,0.07372077,-0.52153575,0.31733856,-0.24120305,-0.41797754,-0.18847656,-0.08957335,0.5636341,0.1347898,0.31444222,-0.39822313,0.41216648,0.39753208,-0.46006197,-0.03223353,0.09912981,-0.38976526,-0.10156126,0.04809914,-0.08594473,-0.38570195,-0.46190637,0.5528231,-1.015625,-0.42272037,-0.07006735,-0.18304002,0.3098025,-0.07031783,0.05813831,-0.43023255,-0.52316624,-0.00687624,-0.12203471,-0.90625,-0.921875,0.28029954,-0.2506042,-0.03405974,0.6777344,-0.29696226,-0.1699012,-0.05162576,-0.28420386,0.45888487,-0.21321489,0.07055485,-0.25395665,-0.1194404,0.18709266,-0.07738111,0.20108503,0.08448689,-0.33121142,-0.49602142,0.38081825,0.3085782,0.08522204,-0.10328425,0.17533703,-0.03150475,-0.1187102,-0.07013672,0.0385679,-0.09474968,-0.77473956,-0.13279523,-0.05396053,-0.5850497,0.2890095,-0.38857257,-0.09584463,-0.16263236,-0.02366446,0.05353911,-0.07836825,-0.48338467,0.31847292,0.13042994,-0.5900735,0.10838775,0.32616454,0.13185434,0.15921077,-0.11594453,-0.30857873,-0.3407743,0.10202704,-0.25386393,0.07814466,0.09300824,-0.5775,0.38443395,1.1640625,0.13828029,-0.4033159,-0.2579322,0.12893425,-0.3027151,-0.27645597,0.0759642,-0.00240254,-0.3359375,-0.15910615,0.13038038,-0.03685467,-0.9296875,0.03093493,-0.31735712,-0.11299834,-0.27722937,0.02789624,-0.4003336,-0.16897342,0.683543,-0.2557824,0.04908248,0.00400185,0.07199029,0.02252069,-0.2940557,-1.1015625,-0.22262102,-0.16849174,-0.0957067,-0.01448681,0.0751064,-0.11616803,-0.4248047,0.37588277,-0.60164064,0.01784591,-0.13811365,-0.2557801,0.2108442,-0.27340433,-0.08702387,-0.12418024,-0.29979068,-0.01543228,-0.6452935,-0.1425235,-0.69677734,-0.21045528,0.29389614,0.485798,0.17778127,-0.05868915,-0.00184158,-0.00173149,-0.2279619,0.13475442,-0.1112752,0.11476918,0.03523269,-0.16216455,-0.6171875,-0.36417374,0.14551786,0.19178602,-0.07692822,-0.03955401,0.65699404,0.08641471,0.3173959,-0.3290579,-0.38376972,0.728125,-0.05249596,0.72216797,0.06589883,-0.47831124,-0.07131627,0.0673028,-0.39149728,-0.0510344,0.08078483,-0.02217959,-0.23584726,-0.05199156,0.05566195,-0.06983131,-0.07737007,-0.3065971,0.08789925,-0.72676283,0.1455341,-0.48509556,-0.00931769,-0.2558688,0.20702572,-0.03345475,-0.03178239,-0.40048558,-0.452956,-0.42768556,-0.09889372,-0.6970486,-0.14108866,-0.00434339,0.23527957,0.48835638,-1.15625,-0.24315403,0.17000091,0.0154634,-0.34769294,-0.19914497,0.44710436,0.02954102,-0.3410672,0.6473357,-0.37095013,-0.21647468,-0.22250439,0.07903548,-0.36327353,-0.15093456,-0.3670573,-0.09518886,-0.18324041,-0.2607146,-0.22682783,0.0796012,-0.63881654,0.1702848,0.27247784,0.6134375,-0.14460975,0.8984375,-0.37591863,0.08321258,-0.00734136,0.43840843,-0.14555117,-0.58608216,-0.22614737,-0.7080078,0.82421875,0.1904116,0.07027032,0.14444672,-0.03955887,0.18226986,-0.438351,-0.25980547,0.36319676,-0.34662873,-0.1405797,0.48763022,0.07763787,0.15481086,-0.2216501,-0.20845118,0.24656373,0.4248311,0.08789744,-0.08612286,0.74441963,-0.04793154,-0.23579566,-0.37611845,-0.04219168,-0.19578215,0.30657354,0.11177015,-0.5361506,-0.7090872,-0.48263115,-0.28900132,0.1782287,0.4903263,0.30356994,0.02988249,-0.17191674},{0.58925784,0.14310549,-0.12461933,-0.73535156,-0.10372531,0.2908814,0.02976768,0.3930753,-0.26547346,-0.00200116,-0.2196545,-0.47277725,-0.05518473,0.13040543,-0.23680897,0.02955698,-0.46360466,0.5606445,0.03689145,-0.43077368,0.15233003,-0.4171875,0.07149731,-0.32325122,0.5156726,-0.24886377,0.01831958,1.0,-0.08815067,-0.00720039,0.03858758,-0.9296875,0.07547487,0.08129811,-0.02003993,-0.15044263,-0.22561087,0.2765341,0.07667719,-0.0518509,-0.28622058,-0.07912103,-0.47929686,-0.45336276,0.19039857,-0.534686,0.09083743,0.21926922,-0.28521088,0.18112114,0.12887257,0.16355772,0.04695172,-0.2529377,-0.22462021,0.05886212,-0.6119449,0.5400054,-0.16358465,-0.08739763,0.1509231,0.16160673,0.12843378,-0.00396799,-0.22066735,-0.08786003,0.02763877,0.5307049,0.00636178,-0.03436113,0.41213727,-0.00832806,0.5756836,-0.21339959,0.15478328,-0.221221,0.06693248,-0.23592225,-0.06016808,0.1743402,0.04148069,0.08319957,-0.01370953,0.09594952,0.07927442,-0.27525833,-0.3202074,0.3925622,-0.0328361,0.33914185,-0.054943,-0.27428934,-0.55940753,-0.10818413,-0.3163368,-0.03794504,-0.24775356,-0.13715747,-0.04554926,-0.3985162,-0.02753027,-0.21290988,-0.14886935,-0.33583605,-0.68146306,-0.395724,-0.4140757,0.05858776,0.02898108,-0.10112001,-0.8535156,-0.4669054,0.01839436,-0.14310445,0.31153646,0.08203222,0.29491505,-0.13383712,0.12109838,0.02425896,-0.16404353,-0.98046875,-0.37972477,0.14301562,-0.223625,0.41253504,-0.2920054,-0.2021901,0.12464484,0.01582831,-0.22217199,1.1171875,-0.17088458,-0.26552603,-0.64806545,0.20059888,0.19377585,0.39169848,0.1523765,0.10355604,0.26858187,0.12456127,-0.18751882,0.39442906,-0.32715395,0.14397922,-0.2528259,0.2162522,-0.1338027,-0.06196079,0.06053802,-0.36902454,0.24181247,0.08129822,0.32219726,-0.27830273,-0.11254218,0.15724038,-0.24125661,-0.25479183,0.14697166,0.6252056,-0.5626562,-0.7664931,0.19293025,-0.02290744,-0.02325786,0.529375,0.17788926,-0.08250506,0.03002301,0.25057548,-0.14159298,0.54064614,-0.2080251,0.10200333,-0.08840407,-0.95442706,-0.39721808,-0.19776176,-0.02788441,1.0234375,-0.527255,0.134296,0.10005539,0.314407,0.14402883,0.23868002,0.17765123,0.13768543,0.39749098,0.5099927,-0.7821801,0.01372771,0.30461985,-0.49905303,0.13816498,-0.16266072,-0.12578467,-0.1665446,0.72786456,-0.71397567,0.02589015,-0.1752959,-0.02446129,-1.0703125,-0.12941569,-0.6365625,-0.13331144,-0.1518334,0.37589517,-0.05749737,-0.65678877,0.01223803,0.01119398,0.1322915,0.16951127,0.47993165,-0.09200967,0.1824664,-0.47263184,0.85859376,-0.10861592,-0.29008073,0.6557617,0.05591194,0.4113948,-0.3283315,-0.16162506,-0.19723283,-0.19818793,-0.07495369,0.14992812,0.3535319,-0.08738639,-0.32609317,0.01793228,-0.673584,-0.01790821,0.47383997,-0.08371622,-0.2578895,-0.6537642,-0.09057878,0.5890067,-0.07934364,0.15469375,0.357292,-0.5645637,0.45193142,0.09641104,0.44773626,0.5194212,-0.02625586,-0.46341377,0.250317,0.18841998,0.2342516,-0.3818791,-0.36815476,-0.16600855,-0.41402224,0.06167738,0.40944603,-0.3240643,0.16550577,-0.04490816,-0.0937437,0.19969657,0.51785713,-0.49762517,0.30473423,0.03085004,0.28810152,-0.07199107,-0.00853263,-0.15864299,0.23340261,0.21043912,-0.0844045,0.02628365,-0.06961692,0.2426356,0.18395305,0.19970347,0.31045312,-0.23882128,-0.01825381,0.2352652,-0.17907386,-0.31932378,0.01402437,-0.14404048,-0.25385875,-0.41686767,-0.20844863,-0.25477025,-0.11692668,0.10181246,-0.27353278},{0.0810736567,0.471722156,-0.919921875,-0.157092065,0.413114935,0.185009852,0.128407761,0.161080822,0.402476162,-0.338985234,0.140086025,-0.0385813303,0.0820573419,0.0971711352,-0.0218866598,0.0717698708,-0.0545942523,0.245624676,0.295124233,-0.0209245812,-0.0120129045,-0.20254761,0.58600986,0.1332248,0.473011374,-0.595001996,-0.110565968,-0.836718738,-0.389906943,-0.206515923,-0.670619428,0.165582851,0.0159871187,-0.0157182738,-0.0298280288,0.137637064,0.00266429735,0.0924978629,-0.224687845,-0.425354004,-0.875,0.200580329,0.0752160326,0.893554688,-0.0737719238,-0.284194112,-0.117183067,0.348530024,0.00679659983,0.385703564,0.273367256,0.263637394,0.246637106,0.255840957,-0.10846474,-0.0637701005,-0.253869623,-0.263690531,-0.281137556,-0.20253624,0.296813965,-0.100363567,0.0227596387,0.459023446,-0.164572358,-0.0342771001,0.331091553,0.119127728,-0.31429401,0.254860997,0.259722918,0.0518971793,-0.3699646,-0.830729187,-0.189952552,0.331054688,-0.240192756,-0.197769612,-0.00542231556,0.369309008,0.0535829589,-0.102531746,0.102454923,-0.215781257,0.34379378,0.0144439628,-0.154770777,0.0685647354,0.0254323948,-0.125048429,-0.398457021,-0.0396770984,-0.404227108,0.124211892,-0.115693793,-0.0893462524,0.150903791,-0.394444823,-0.174722955,0.0988064408,0.416871279,-0.374031842,0.188516095,0.216321617,0.21233581,-0.232868746,-0.0486886576,0.288129598,-0.153732583,0.034383893,0.16314958,0.270418018,0.390614986,-0.0942513868,-0.00974897202,0.106454574,0.0516470112,-0.161182106,0.108373053,-0.746995211,-0.322310388,-0.113321632,0.180550009,0.340583295,-0.155722827,0.130313963,-0.26171875,0.115250878,-0.0624316521,-0.362345964,0.4060902,0.0349077471,-1.03125,0.0635105297,-0.294793725,0.216702789,-0.182656556,-0.344401032,0.177255034,0.131386086,0.18504554,-0.109168701,0.127397373,-0.280226082,-0.0756546557,-0.0372889973,-0.365263849,0.177226931,0.48036024,0.154331416,0.501085043,-0.0336299203,-0.221704692,0.136225954,0.185071677,-0.336826742,-0.237371758,0.050795529,-0.150926456,-0.21871984,-0.107095435,-0.22213383,-0.151787475,0.420568615,0.0874542743,-0.168442607,0.139615431,0.101306215,-0.292093217,-0.366186738,-0.377102852,-0.475139022,0.255836397,0.18898429,0.137215808,-0.0893223137,0.154823557,-0.241722882,0.248417199,0.0979034603,-0.29696244,-0.677159905,0.116993174,0.0439029597,0.320333272,0.178203821,0.0197830852,0.791294634,-0.37588641,-0.518152595,0.113293238,-0.1484752,-0.25389275,-0.379366904,0.424880862,0.639740586,-0.190915272,0.0334206745,0.0149101047,-0.14203462,0.228542313,-0.169879705,-0.418981105,-0.106455393,0.193354085,0.0230361894,0.249560088,0.12847051,0.257783353,-0.625,0.137345746,0.195781961,0.193847656,0.548065901,0.351502717,0.0157119501,-0.338129938,0.176201493,-0.0484795459,-0.248789862,-0.150859639,-0.000478995033,0.14109616,0.250079483,-0.250532359,-0.491970479,0.453899205,-0.220603168,0.211498588,-0.142584145,-0.461704791,0.145933837,-0.0509414598,0.145973951,-0.381917328,0.122079141,0.176779002,-0.0339677632,-0.178110912,-0.098606348,-0.112350874,0.143103078,-0.166539192,-0.121830612,-0.388715267,0.14506425,-0.368096292,-0.00982603896,0.13569054,-0.25977236,-0.0820560604,0.134717241,0.177714735,0.30660677,-0.24937655,-0.0998768508,0.0214378349,-0.0588826463,0.410903752,-0.185015395,0.259749383,0.0183370225,-0.0822985545,-0.936197937,0.134291664,-0.0917790011,-0.0628778711,0.244606242,-0.384735703,-0.343660116,0.0327162966,0.171885073,-0.152299732,-0.0890498012,-0.248299867,-0.0344223082,0.0915547311,0.734375,-0.171340331,0.318356216,0.379922956,-0.00340223312,-0.148464397,-0.237259105,-0.626233578,0.0893450156,-0.016495483,0.231328964,-0.336830944,0.430829883,0.149870172,0.0756937638,-0.0947429836,0.306701869,-0.70703125,-0.401632249,0.568359375,-0.000670959416,-0.755208313,0.256830692},{0.11178209,0.19338039,-0.05138907,0.17183839,0.13373782,-0.35432202,-0.7265625,0.00159239,0.5716553,-0.0693109,-0.19136792,-0.11350735,0.6362847,0.8226563,1.046875,0.28903073,-0.01606561,-0.39535362,-1.0351562,0.8828125,0.13768232,0.29971504,-0.15815206,0.47758245,0.26751497,-0.2763768,0.17001422,0.3866197,-0.15376206,-0.3974102,0.28718057,0.13076854,0.2045668,0.41123384,0.07109749,0.04743093,-0.13712859,-0.0025273,-0.03783562,0.08009451,-0.31560907,-0.2070391,0.3321029,0.40989515,0.5407609,0.7734375,-0.24883665,-0.09131782,0.6794819,-0.26176956,-0.03418839,-0.35262135,-0.3066316,-0.00585906,-0.04299451,0.1880323,-0.04028373,0.1126571,0.07938177,-0.44717854,-0.25684923,0.08737379,-0.10646894,-0.26268858,0.18392882,-0.5974609,0.30839646,-0.27735797,-0.09325439,-0.3719906,-0.4422898,-0.22266299,0.52313113,-0.01845505,0.2734706,-0.545196,0.21674284,-0.4060806,-0.03420244,-0.16948982,0.15386638,-0.03009086,-0.0489487,0.16311942,0.2635766,0.23246968,-0.10668297,-0.10012656,-0.12609385,-0.01955899,-0.69814116,-0.4834772,-0.33498442,-0.67122394,0.12935352,-0.8300781,-0.210868,0.48712713,-0.12944639,-0.10768975,-0.32027403,0.06127819,-0.02569776,-0.06336946,0.432468,0.45909494,-0.0798512,-0.09715731,0.03529862,-0.02730295,0.25056002,0.18748195,-0.5493421,0.189373,0.04089055,-0.14161675,0.11771658,-0.03736244,0.42977002,0.09201267,0.11693464,-0.08756778,0.6026278,0.00375516,0.23050399,0.22369826,-0.02661213,-0.3663737,0.02835744,0.14064454,0.10864624,-0.16070658,-0.02352119,0.10817206,-0.5617341,0.15820476,0.62022567,0.1898903,0.11176015,0.23832949,0.17189443,-0.21046549,-0.71875,0.09988858,-0.35721445,-0.1894671,0.18406905,-0.05602464,0.2635131,0.49746817,0.8663505,-0.20846279,-0.18799815,-0.13910097,0.5996094,-0.15620367,-0.21875694,-0.2066133,0.05300218,-0.15917829,0.08299261,-0.16307297,0.50553745,0.77008927,-0.22951736,-0.10110126,-0.10893642,-0.16893049,-0.06690271,0.0041083,-0.4337703,0.07709577,-0.32797542,-0.01280912,-0.26958892,-1.0585938,-0.11568233,-0.3095007,0.48535156,0.3729046,-0.13724716,0.26362628,-0.33982167,0.03209043,0.16452004,0.03747752,0.24070051,-0.66015625,0.02878171,-0.02984576,-0.51715356,0.21482354,-0.23292449,0.12884206,0.4889769,-0.02544852,0.31619173,-0.18752208,-0.02540422,0.4905711,-0.36621094,-0.2645838,0.00611353,-0.37489665,-0.0930131,-0.05582582,-0.4658203,-0.09766817,-0.6229248,0.27334648,-0.09765741,-0.14888854,0.4275351,0.13425095,-0.00876221,-0.06391986,0.54894304,-0.10747093,-0.695638,0.42544523,0.2559226,0.5080199,0.09566394,-0.11863459,-0.14892171,0.1094103,0.11181213,-0.12527734,-0.13917983,-0.30068824,0.03392609,0.31639612,0.21037109,-0.524111,-0.45324266,-0.02131468,0.529373,-0.04625403,0.03089191,-0.07469825,-0.06615324,-0.1069079,0.24870946,-0.27744654,0.02034321,0.3951336,0.28318268,0.00384985,-0.21433856,-0.28708652,0.25584537,0.29098216,0.21538182,-0.05293139,-0.02903428,-0.11277609,-0.2733265,-0.20261791,-0.05904021,-0.88203126,0.40226063,0.04210491,0.3340075,-0.09173542,0.23241724,0.19142756,-0.501571,-0.7902961,-0.16648078,-0.77213544,-0.14745578,0.01798135,-0.0802993,0.20559958,0.6273321,-0.6599121,-0.02730874,0.0192431,0.06265276,0.42484125,0.23981282,-0.23621742,-0.16698122,0.9140625,0.1352464,0.22229059,-0.42470974,0.6720861,0.04637118,0.19533266,0.21102437,0.18012471,-0.03823381,0.42143175,0.08978663,0.19726157,0.3661935,0.50406903,0.66265625,-0.29985812},{-0.31055626,0.30478948,-0.25780785,0.15476,-0.2507015,-0.09936908,0.6394043,-0.0083424,0.66658264,0.37295237,0.22453982,-0.04735162,-0.10615258,-0.0485854,0.28835434,0.1426179,0.1850692,0.22362435,-0.16736977,-0.55078125,-0.57109374,0.39734605,0.11011301,-0.14009647,0.552329,0.187909,0.4852242,-0.4460178,-0.04844971,0.10915225,-0.47548917,-0.7561384,-0.10768639,0.44642428,0.04408538,-0.19484475,0.04136561,-0.3620686,-0.6637835,-0.5853207,0.08080046,0.6955915,0.28610513,0.07296769,-0.02459206,-0.40242627,-0.08593065,-0.30653438,0.5777778,-0.01867287,-0.37874955,0.05546398,0.17728461,0.29683292,0.22265226,0.11177179,0.26953766,0.07302641,0.21674685,-0.55859375,-0.17433733,-0.3994542,0.31174368,0.378284,0.28316256,0.2830709,-0.10037716,0.8955078,0.614984,0.02269232,-0.73535156,-0.02796056,-0.32703465,-0.36338404,-0.14696936,0.11701508,0.4353785,-0.7417834,0.5074914,0.7757813,0.18656144,0.22657967,0.2187884,-0.4666726,0.113286,-0.29876116,0.19577284,-0.73046875,0.14213349,-0.3400055,0.2536951,0.31623134,-0.00288045,-0.3660482,0.21630377,-0.6380208,0.01283739,0.04858145,0.21972427,-0.21538103,0.13622123,0.0281719,0.6859375,0.0188353,0.05296565,-0.12107237,0.22910742,0.02910165,0.6106534,-0.20212598,-0.5078891,-0.10297837,0.02655766,0.08008847,-0.13579091,-0.3456393,0.15335,0.5523727,0.15574256,0.313407,-0.11033062,0.47769442,0.14497577,-0.12131085,0.6135864,-0.4442866,0.24976894,0.5292377,0.06139758,0.44708088,0.43348372,-0.00174639,-0.4963968,0.13862841,0.00688458,-0.0661637,0.09202471,0.09862056,0.64635414,-0.05126065,0.3828639,-0.08084106,-0.07299859,-0.07933401,0.20748685,0.31064355,0.10495109,0.37789223,-0.21142578,-0.20654988,0.17383066,-0.09229038,0.08449953,-0.292814,-0.8046875,-0.38674444,-0.00416739,0.7199219,-0.84155273,0.07934075,-0.26156956,0.285174,-0.34936985,-0.19428371,-0.00417821,0.0535498,1.0859375,0.44129923,-0.14453918,0.9921875,0.17722404,-0.26949638,-0.16601937,-0.29484844,-1.1171875,0.04591824,0.00268849,-0.27147394,-0.4978673,0.01006007,0.4790974,-0.35836694,-0.39640298,0.482505,-0.05043339,0.06018484,0.69140625,-0.07152442,0.5470224,0.23680034,0.0080443,0.16744599,0.35509816,0.0866347,-0.15910508,0.01910463,-0.35162118,-0.04271732,-0.14160553,-0.3105126,0.17432643,0.01330336,-0.5166693,0.20121136,-0.08007537,-0.03487851,-0.21816804,0.39480004,-0.6770833,-0.4199127,-0.2050535,0.3898979,-0.40136346,0.3280395,-0.9348958,0.26453334,-1.1445312,-0.04047678,0.5202474,0.06157006,-0.39543372,-0.07319761,0.5002232,0.27632663,0.25980327,-0.09060799,0.17673908,0.34565404,-0.18299933,0.33423838,-0.32320225,0.24847819,-0.04081224,-0.11943842,0.47365743,-0.10423157,-0.20795786,0.31837276,0.13137847,0.10205367,0.21973042,0.01917768,0.5956358,-0.17378084,-0.02956592,-0.48962602,-0.44829184,0.02490558,-0.43476564,0.10472257,-0.04737987,0.5979567,0.11867269,0.6794355,0.02711258,-0.30762365,-0.28896672,-0.29203776,-0.32229576,0.32426915,0.03117758,-0.03885243,-0.39537418,-0.34865662,0.58528644,-0.00525365,-0.30463254,-0.06287991,0.21237768,-0.11593334,-0.04575878,0.23342827,-0.3202418,-0.22653408,0.05308151,0.02790761,0.19762641,0.26458815,0.44699097,0.22122844,0.13079998,-0.4237027,0.28209943,-0.00805338,0.9550781,-0.05153923,-0.39126688,-0.15622497,-0.3943709,0.44535235,-0.20068628,0.3183758,-0.11888444,0.26074925,-0.31423262,0.14986654,0.94140625,0.07892902,0.6209343,0.29494804},{0.273393512,-0.324071884,-0.0798317716,0.402187228,0.194261998,-0.839285731,0.167438209,-0.306495935,0.206442609,-0.112244278,0.153815553,0.0863539726,0.192854255,0.513684154,0.107931316,0.17090115,-0.0403677039,0.137658745,0.066410087,-0.0722206011,0.256778836,0.0326091647,1.08333337,0.177273363,0.304788172,-0.378898561,-0.0901106521,-0.0288569517,0.201651469,-0.0995983109,0.203250721,-0.250262082,-0.372131705,-0.0552720279,-0.206091002,-0.177233264,-0.0275785867,0.131871194,0.0318674855,-0.00272196787,0.00337704271,0.17573458,-0.374117941,-0.366120219,-0.152883381,-0.140662313,0.748437524,0.0281833839,-0.574286103,-0.245874926,-0.0050272285,-0.478192449,-0.172861949,0.420898438,-0.0594601855,0.00649568718,-0.168414801,-0.154755279,-0.0292260088,0.300899118,0.407564133,0.133307502,-0.119360276,-0.4081496,0.41010946,0.0537494086,-0.129937202,0.287068695,-0.115233757,1.1640625,-0.0639634728,-0.245065644,0.287220836,-0.0628961995,-0.111606561,0.000241425369,-0.449101567,-0.650453627,0.269579589,0.0135331387,-0.21584639,0.415408969,0.201194167,-0.322185427,0.716496408,0.0625548065,-0.0951884314,-0.0164700951,0.112820774,-0.316394418,0.281905591,0.194289565,-0.168925285,0.135760754,0.346532375,0.88671875,-0.0239283815,-0.248834372,0.0472072251,-0.720013797,0.525223196,0.0995491669,-0.00590188149,-0.140117884,0.185972765,-0.466400146,-0.559651673,-0.121421099,-0.0416455269,0.715198874,0.396691173,0.10857071,0.0411627442,0.30648002,0.0222794786,0.134248391,0.348548859,-0.426855475,0.764694929,-0.31068036,0.042839516,0.0600552112,-0.0252955519,-0.409873873,0.951171875,-0.122592412,0.165059343,-0.255725592,0.42558977,0.097878471,-0.480182618,-0.122643612,0.195761263,0.241269499,0.0749692842,0.381798774,0.223110065,0.140111357,0.125074267,0.438408285,0.0126067661,0.467698306,-0.122044675,0.113814741,0.103201278,-0.345728487,-0.291986197,0.197307423,-0.459997565,0.0134190926,0.0322186723,0.0186949056,0.0100949276,0.253845841,-0.00930865481,0.289720178,0.339632094,-0.191365436,-0.0434634238,0.118050352,0.0483136177,0.24363336,0.0869062468,-0.0416223481,-0.140676811,-0.0475105047,-0.236352235,-0.134289831,-0.248856321,-0.185134321,-0.125065342,0.470356613,0.27147764,-0.108605698,0.9453125,-0.0115177054,0.254913896,0.064102903,-0.175251111,0.39951995,-0.0393229015,-0.275386184,-0.0739365444,-0.167060941,0.129446536,-0.265680969,-0.203125,-0.114225678,-0.224503353,0.867745519,-0.216782257,0.0102305338,0.214888483,0.26668793,-0.0381985717,-0.389683723,-0.115983352,0.36047101,-0.387676895,-0.0930264816,-0.0290229954,-0.479875833,0.391071439,-0.0311225839,-0.8828125,0.232388839,0.37501207,-0.124928497,0.4300102,-0.730646312,-0.00305509614,0.484418899,-0.0618411414,-0.0543282628,-0.531535804,0.548713207,0.269620597,0.400328606,0.144056827,-0.490084141,0.146833152,-0.172789752,0.218746156,0.0788448304,-0.620042086,-0.115697019,0.355549455,0.0243497975,-0.308472306,-0.666766822,0.0668859333,-0.416887552,0.246533945,-0.156679362,0.150795445,-0.376999617,0.387623101,-0.490440816,-0.156768575,0.370840579,-0.268595129,-0.652478456,1.0546875,-0.331959516,0.429913938,-0.597363293,-0.42308408,-0.538892686,-0.8515625,-0.408483952,-0.0605046637,0.124642901,0.150408134,-0.0932135656,0.0979112759,-0.206061393,0.144056275,-0.324106425,0.106174298,-0.349513322,-0.00280266581,-0.00368543528,-0.0385887362,-0.282226562,-0.437516689,0.34965989,-0.216809571,-0.369181693,-0.261671126,-0.595703125,0.0553107001,-0.145870283,-0.0371207111,0.376160949,-0.0586385652,0.0178855434,0.291296393,-0.306626052,-0.535748124,0.272380441,-0.421021402,0.895833313,0.0664248541,0.269431531,0.0541593358,0.185505643,0.0134938862,-0.774739563,-0.263529122,0.173854932,0.285182178,0.163556546,-0.157162607,0.53125,0.00097023556,0.423781991,-0.880859375,0.165494978,0.00762963342,0.424026281},{-0.0027739,0.5078125,-0.30073208,0.27245387,-0.3115827,-0.45808753,-0.40923247,-0.2919922,0.19288737,0.5395508,-0.30961886,-0.4485797,0.03369336,-0.3230018,0.0069678,-0.19141439,0.6066176,0.32903513,-0.49206793,-0.79375,0.2260622,0.6328125,0.53714305,-0.5327919,-0.21237047,-0.23293258,-0.6872944,0.2133876,-0.80566406,-0.44542375,-0.87369794,0.23779297,-0.6003788,-0.37014025,0.01425041,-0.7152778,0.0752205,-0.48166582,0.1279271,0.694987,0.25882843,-0.17283529,-0.17924248,0.49887753,-0.501188,0.4545573,0.1869558,-0.5827637,-0.2036649,0.44413203,0.20905983,-0.30461332,0.26376927,0.5778556,-0.41206565,-0.21876696,-0.273389,0.00535511,0.43736294,0.02118751,-0.06734242,0.07616055,0.51298827,-0.38259548,0.26069078,0.13229083,0.04991483,-0.00978102,0.03124264,0.0810909,-0.17477126,0.44734964,0.31536865,-1.1484375,-0.8828125,-0.06664904,-0.02715877,-0.30272493,0.21442258,-0.05350036,-0.06492998,0.12839141,-0.26079735,-0.76953125,-0.56239986,-0.24928267,-0.02749617,-0.36016256,-0.26364136,0.30068195,1.0078125,0.06449507,0.311516,-0.23157309,-0.03966056,-0.02611196,0.30088025,-0.35245728,-0.2754357,-0.28711277,0.24498916,0.4560547,0.05977076,-0.05847245,0.4793557,0.05713855,-0.15671124,-0.16166434,-0.2172483,-0.1284344,0.6269531,-0.5227932,0.17921765,-0.33785835,-0.1626888,0.2939453,0.47998753,-0.23480102,-0.33675855,0.48616728,0.07789638,0.4205823,-0.07125841,0.7554687,-0.5641741,0.01352917,-0.10818046,0.10426643,0.21675083,-0.00338528,0.26950854,-0.1098991,0.27930465,-0.23377076,0.4177446,0.09467159,0.24362196,-0.15328497,0.26657546,0.06044274,-0.13380945,-0.16941017,-0.20649843,-0.12151307,-0.18553902,0.00121251,-0.02535162,-0.8333333,0.22696866,0.08612656,0.07911731,0.18453093,0.06978353,0.14553264,-0.0544862,0.4392528,0.27521467,0.58314735,0.19229567,-0.09838028,-0.8671875,0.3242581,0.360223,0.31443903,-0.05835699,0.0638663,-0.13371296,-0.5904738,-0.47070312,-0.12651114,0.61157227,-0.03850879,0.54909205,0.07518318,-0.03447469,0.5150463,-0.75,0.08891429,0.63002235,0.2329027,0.2715266,-0.41351932,0.77265626,-0.69308037,0.17624813,0.37904146,0.19773681,-0.09985706,0.72875977,0.8142361,-0.6614583,-0.0545716,-0.16452836,-0.23903526,0.4001293,-0.29977864,-0.1767597,0.22364552,-0.259711,-0.12344133,-0.08986359,0.0351582,-0.28807777,-0.11817543,0.3212536,-0.5488591,0.15136197,-0.14792725,-0.47601843,-0.01920175,-0.15574935,-0.04716333,0.01389441,-0.38385513,0.11807757,0.43828955,-0.16694109,0.0885782,-0.91796875,0.16647542,0.3389617,-0.36122295,0.05934696,0.20455456,-0.43447176,0.25391546,0.05691671,-0.08767793,0.0883663,-0.17617665,-0.6495864,0.00523484,-0.00168883,-0.00675632,1.0,-0.01656556,0.09157837,0.13768099,-0.23694725,-0.66552734,-0.44755858,0.12039454,0.3417253,-0.05500644,0.310508,0.24465603,-0.13625883,0.4140696,-0.6237793,-0.04672945,-0.19780786,-0.211929,0.14067946,0.20310661,0.04552587,0.08491988,0.21039149,0.05594441,0.31538206,0.02618773,0.00461618,-0.06056874,0.29692882,0.52334666,0.07052149,0.2871023,0.2558663,0.34085596,-0.5332031,0.05713553,0.34284392,0.13819402,-0.2841528,0.32709983,0.18125226,-0.26279762,0.4030664,-0.01804586,0.24028301,0.3026363,-0.0888887,-0.1967119,0.09682838,0.36254445,-0.29901317,0.5220788,-0.5913756,0.4384574,-0.09204973,-0.15919736,-0.6597124,0.13818486,-0.01995345,0.09322836,-0.21571009,-0.10550554,-0.37403634,0.10698362,0.1864717,-0.14463039},{-0.421728,0.953125,0.12059291,0.06813893,-0.12795883,-0.02449447,0.50375205,-0.23341571,-0.33894116,-0.08303028,-0.11888734,-0.6088867,0.29482055,0.15086752,0.51845366,-0.01305543,0.9550781,-0.3428725,0.0880757,0.5332031,0.62228733,0.42471978,0.2488878,-0.34568956,-0.27919433,-0.458082,-0.06592345,-0.05533734,0.0284149,0.19614026,0.6435547,0.2136861,0.22902074,-0.34764248,-0.23143333,0.09133175,-0.35685882,-0.04652121,0.5971175,0.05905991,0.24563587,0.51384944,0.01817435,-0.21142578,-0.43256667,0.42263454,-0.1245882,-0.25298294,-0.12892112,-0.03475142,0.00243174,0.17721607,0.09966992,-0.34180433,-0.29296875,0.44740698,0.23915759,-0.08592218,-0.42785224,-0.27535918,-0.00511324,0.55477625,-0.13572033,-0.15424515,-0.25286138,-0.65828806,-0.5272721,-0.62417763,-0.49643987,0.11686908,-0.01533605,-0.01884155,0.21825716,-0.5623169,-0.796875,0.22488567,0.23682564,-0.38572598,0.3292173,0.0749165,-0.08246472,0.28918573,-0.11675779,0.30753702,0.37885347,-0.45102164,-0.20166452,0.4453209,0.43624344,0.06717324,-0.23778528,-0.43450874,-0.09003775,0.19038916,-0.0944472,0.34760976,-0.0560557,0.5598958,0.17925695,-0.0896176,-0.36885417,0.22707936,0.17577778,0.32618296,0.17328422,-0.3769247,-0.38474485,-0.01539297,-0.28130475,-0.26853785,-0.0335371,-0.18167305,0.41971675,-0.27555338,0.01127949,0.41308594,0.21573539,-0.20709522,0.8376116,-0.13576393,-0.48242188,0.45583025,-0.21383321,0.01425586,0.06597666,0.4891729,0.57161456,-0.3975,-0.08981877,0.69980466,-0.1864928,-0.35742188,0.56740785,0.21181287,0.34267893,0.11918417,-0.4865164,0.3458151,0.22109374,-0.09106866,0.2118829,-0.25786227,-0.5014776,0.45683593,-0.47220552,0.26758552,-0.11744036,1.3359375,-0.31148797,0.17189401,0.36124063,-0.02086177,0.35033357,0.10864258,0.04601371,-0.6808894,0.06907505,0.43718433,-0.13772996,-0.4708715,0.4236049,-0.07328192,0.11398012,0.17625795,-0.30457857,-0.5811696,0.38478348,0.22017375,0.1421441,0.3105107,-0.49767646,0.23537081,0.13971445,-0.50037044,0.02140286,0.18265304,0.21829045,0.22590992,-0.88671875,0.3261294,0.0418717,0.03908576,0.17334865,-0.15386632,0.08885597,-0.2832627,-0.00160291,0.02152454,-0.8300781,0.01126563,-0.10887549,0.15034358,-0.45883968,0.5084044,-0.27137327,0.21040784,0.45377603,0.16261941,0.28321728,0.1178964,0.15472762,0.5078125,0.43921992,-0.00832929,0.21731372,-0.50951284,0.65234375,-0.3183244,-0.02165001,-0.30466834,0.19831046,0.02736136,-0.3622483,0.12137492,-0.07588571,-0.0543173,-0.25019962,-0.1288521,0.03001456,0.11209463,0.546875,0.08816441,-0.12392682,0.77734375,-0.5627093,-0.13870357,-0.4009961,0.09594411,0.01260169,-0.09664997,-0.24459158,0.3359639,0.07325625,0.1004007,-0.2763745,-0.06591944,0.25490773,0.37787718,0.5310007,-0.0639686,0.05737336,-0.14056602,0.03799572,0.14797716,-0.36028713,0.09309231,0.32317045,0.14500384,-0.20158751,0.2957871,0.02910163,0.77783203,-0.31829154,0.12481747,-0.12068996,-0.45488665,0.12994605,-0.02773536,0.2202289,0.10038747,-0.921875,-0.5053711,-0.10152863,-0.23678192,-0.07858409,0.12842247,0.44618627,0.22556865,0.2793348,0.17565402,-0.24366571,0.11058671,0.72591144,0.34356183,1.109375,-0.02813672,0.22806211,-0.04871485,-0.2714006,-0.29567307,0.09397795,0.02729464,0.07712991,-0.6802083,-0.19328222,0.055553,0.17821269,-0.3163678,0.45901114,0.2626887,0.04505635,0.11131703,0.6171875,0.116206,-0.22892804,0.60572916,0.11913825,-0.09130207,-0.1203576,0.03641016},{0.8984375,0.438513845,-0.431609631,0.241792098,0.509472668,-0.118153036,0.0773497969,0.12831986,0.0924546272,-0.231404617,-0.0299529098,-0.66027832,-0.217254341,0.565950513,0.120580532,-0.0317002013,-0.000479793467,0.185093507,-0.0517944321,-0.329141259,-0.295895249,0.179695055,-0.766601562,0.163530126,-0.0783748552,-0.121358424,0.381749779,0.446171016,0.279319078,0.178761482,-0.0644290373,0.0446725078,0.18014273,-0.782226562,0.387628227,-0.545189142,0.67578125,0.532658815,0.251953125,-0.153773144,0.338816613,0.1249246,-0.0316502191,0.121368147,0.407407403,-0.130827218,0.497333229,0.0372090675,-0.0209431313,0.0888657793,0.386764169,-0.256799549,-0.404258192,-0.555678666,-0.342726946,0.393475264,-0.107411735,-0.3759453,0.0673761368,-0.0301495437,0.177846074,0.455959231,-0.385643631,-0.190437645,0.873046875,-0.203690767,-0.43762207,-0.259759665,-0.172330394,0.3796013,0.173885331,0.343669027,0.0817805082,0.499469876,-0.219714373,-0.247575551,-0.394187987,-1.109375,0.0742128864,0.268591762,0.502952397,0.0141585963,0.170894757,0.11865481,0.316420406,-0.133254364,-0.349567384,-0.00396207441,0.609056115,-0.167550921,0.488532364,-0.633501828,0.247981772,0.165487647,0.0734338462,0.213255852,0.0231703278,-0.218261719,0.141606525,-0.00980386976,0.689843774,-0.797851562,-0.0285875443,-0.11524035,0.377925575,0.0320145525,-0.0910262316,0.11375992,-0.697916687,-0.232927233,-0.205995575,-0.0739974305,-0.34948805,0.0607708767,0.885602653,0.216372848,0.523334682,0.117003456,-0.143019706,0.25978905,0.307703495,-0.00346029154,0.114729084,0.472893,-0.447242647,0.347795755,-0.185556114,-0.0595905185,-0.293053657,0.0759477019,0.0460988618,0.0717712641,-0.452890635,-0.766927063,-0.195383951,-0.66796875,0.181209967,-0.128845811,0.385697395,-0.231524587,0.027634386,0.20705092,-0.300755709,0.523071289,0.232909024,-0.571965158,-0.43647337,0.0619735159,-0.577734351,0.387617797,0.276363552,-0.0651611313,-0.250563473,0.20743151,-0.0962021127,0.559570312,0.220685557,0.897460938,0.117408946,-0.022605164,-0.0861520097,0.126897216,-0.0318314172,-0.225599408,0.263754249,-0.895833313,0.0578373075,-0.0737664178,-0.128891915,-0.138228327,-0.337945968,0.00313037564,0.1298583,-0.316465169,-0.0991267636,-0.150426939,0.078331992,-0.655939996,-0.430419922,-0.0190960858,0.748437524,0.0993500426,-0.316522717,-0.192799836,-0.0844013765,0.252976179,0.0620437786,-0.0172692277,0.193832427,0.6015625,0.84765625,-0.758246541,-0.000492650724,0.605712891,0.0722568333,0.605014563,-0.05187767,0.42579934,0.222692803,-0.0514907502,-0.23679927,-0.290194988,-0.301722676,0.242125452,0.0295799747,-0.124867089,-0.00128570234,-0.156782195,0.486662954,0.000216184431,-0.531015635,0.572102845,0.132351071,0.25003317,0.0973765031,-0.041872669,0.0713046938,0.32708624,0.156725481,-0.282243848,0.00470315851,0.218219087,-0.534476876,-0.8984375,-0.0283094514,0.20457913,0.640269876,0.234798312,-0.663461566,0.295127153,-0.0661254749,0.508144975,0.469716907,0.481197923,0.164550111,-0.134778351,0.141119987,-0.752387166,0.0203185212,0.0910827145,-0.580078125,-0.151362062,0.0300419424,-0.208007812,0.211344406,-0.343682319,0.470052093,-0.146884143,-0.288145214,-0.306630492,0.0635060892,-0.193818331,-0.031930998,-0.0397789702,1.0859375,-0.0690471157,0.107439436,-0.21828638,-0.121805668,0.114691168,0.148370415,0.252970368,-0.0505383424,-0.0324053839,-0.560918927,0.659505188,0.201171875,0.143622592,0.159685209,-0.207450032,0.263519973,-0.0476264022,-0.370856583,-0.421408921,0.589590073,-0.298794448,0.00917092059,0.0659496859,-0.259796619,0.800292969,0.0641998127,-0.526999056,0.108600236,-0.06766662,-0.15924722,0.427681595,-0.248834282,0.0279933382,-0.312520564,-0.0359186456,-0.174334437,0.0930191427,-0.0761594102,0.0171089638,-0.0896131545,-0.645312488,-0.0416050777,-0.563194454,-0.0137821827,0.135684609},{-0.91796875,-0.303686142,0.0286164582,-0.0866344795,-0.376974523,0.170832589,-0.450321704,0.483593762,0.509742618,-0.545072138,-0.139131367,0.407043457,0.108824559,0.423777401,-0.0708108544,-0.00227982271,-0.194317505,0.700846374,-0.266586542,-0.0309342854,0.104986988,-0.0312489904,-0.273349047,0.357322007,-0.197205931,0.206005335,-0.0136544993,-0.0450140387,-0.64855957,0.84765625,-0.148882389,-0.32329306,-0.671669424,-0.141206428,-0.40920499,-0.354587942,-0.119861536,-0.200663954,0.107921682,0.442373514,0.0304960366,-0.257778823,-0.0525581241,-0.338832438,0.135750026,-0.293948799,-0.371035337,0.0650070086,0.48032698,-0.00884809438,-0.601266563,-0.62109375,-0.283323675,0.110803075,0.341858894,0.359403044,-0.0512500107,-0.661179304,0.261713624,0.102808096,-0.609933019,0.321208894,-0.219236016,-0.307608694,-0.316415608,-0.476862967,0.0113526816,0.0695145652,-0.158148408,0.204102755,-0.535912275,-0.335852981,-0.144019112,-0.435409546,0.587890625,-0.474632919,-0.822265625,0.00961967092,0.0272582639,-0.592478216,0.084715724,-0.749023438,0.0191730876,-0.508246541,-0.457446277,0.137665808,0.653409064,0.652138174,-0.0813696533,-0.265536547,0.159576014,0.7734375,-0.13718988,-0.0245495923,-0.292903632,0.379497111,0.12697202,0.148039877,0.463880569,-0.147924468,0.074928537,0.0149129434,-0.305828005,-0.458813727,0.592578113,0.0429960415,-0.0423275903,-0.00631450675,0.330089569,0.100140937,-0.118655756,-0.432419538,0.498381704,-0.36622721,0.328077823,-0.0835670829,0.166997433,-0.681919634,-0.308441162,0.291083574,-0.68359375,0.0117310584,0.161617264,-0.208459139,-0.330068409,0.00206797128,-0.414053231,-0.94140625,-0.0766760409,0.213320702,-0.0707582831,0.00768533861,0.300752521,0.306613028,0.127904415,0.753083885,-0.201605901,0.223585784,0.146010533,0.324127376,-0.294006646,-0.534769475,-0.0266166609,0.142101794,-0.10933131,0.11500521,-0.268541515,-0.334066451,0.88671875,0.122071952,-0.300878912,-0.817908645,-0.294917554,-0.10857971,0.235476628,-0.192889944,-0.0238787457,0.0295273922,-0.194806024,0.373089969,0.0749122053,-0.419318706,0.806770861,0.9296875,-0.326189637,0.270380825,0.404330343,0.158617422,-0.000848750351,-0.0336617269,0.216613963,0.548177063,0.0817793459,-0.252795517,-0.378820866,-0.054119084,0.0625305548,-0.233891442,0.101040885,0.287144572,-0.225154519,-0.384765625,-0.046343904,-0.252895802,0.233996332,0.231524259,0.581542969,-0.196778238,0.163180277,-0.208435059,-0.476496965,-0.171403453,-0.608874202,0.250154197,0.246656284,-0.349609375,0.049668666,-0.385701507,-0.156668112,-0.475608647,0.000249050761,-0.424881488,-0.235430062,0.0197146386,-0.159667164,0.344284177,0.0367398486,-0.17042765,-0.273403823,-0.36722675,-0.112618163,-0.160088897,-0.00551568903,-0.520937502,-0.121815018,-0.467196912,-0.290101707,-0.265597492,-0.10204611,0.151851833,0.162633702,0.438428074,0.436381549,-0.399616748,-0.496810734,0.0181778558,-0.0232205801,0.385549366,-0.00889733154,-0.0134804985,0.430361599,0.0616124347,0.854492188,-0.13138096,0.140068188,-0.400645375,0.153815091,0.188409507,0.38855657,-0.252996057,0.50988853,-0.0827769637,-0.0702643096,-0.132374138,0.271466404,-0.0226589274,-0.0734918192,0.378969073,-0.033302322,-0.0309598427,0.0374349952,0.0197196025,0.442616016,0.260703564,0.0601791032,-0.396464974,-0.31151852,0.186939508,0.0516273566,-0.202158391,0.101305217,-0.388530672,0.476171881,0.246408537,-0.695703149,0.00459708879,-0.122591667,-0.549175322,-0.0500014946,0.129952356,-0.0851816535,0.159643978,-0.246626705,0.187070176,-0.463261038,0.563437521,-0.461135656,-0.0312292613,0.557235062,0.120365411,0.0358067863,-0.489860386,-0.00843955949,0.496240228,-0.175740644,0.594238281,0.283143342,-0.251800925,-0.9375,0.653918862,0.467395842,0.149876043,0.386773765,-0.180674255,-0.0647161305,-0.0878691152,0.195316136,-0.391854376,-0.283113539,-0.119392395},{-0.139081642,-0.225287616,-0.7578125,0.0125145726,-0.640458763,0.587582231,0.464261234,-0.102763541,-0.470453799,-0.677083313,0.0712782666,-0.367198259,-0.130387992,-0.144046798,-0.19867219,0.119888104,0.197349072,-0.199620321,0.100602247,-1.2109375,0.0780765936,-0.368950069,-0.297841638,0.623518348,-0.45685938,-0.0663828105,-0.00295610004,0.183214232,0.181597114,-0.168469891,0.0476091877,0.599414051,-0.13522011,0.676822901,0.24756296,-0.783288062,-0.149891347,-0.110612877,-0.124665439,0.320072889,-0.0628535375,-0.0905516297,0.121351391,0.725585938,0.607536793,-0.792773426,-0.227143571,0.109131314,-0.249621809,-0.340615928,-0.531437516,-0.122063629,-0.91015625,-0.211952999,0.0127565935,0.0335459448,-0.362440675,0.455394834,0.196793094,-0.262632877,-0.0306744054,0.215803728,-0.0419873856,0.00791694596,0.303564161,-0.492115825,0.0642005429,-0.743489563,0.314483017,0.051408682,-0.263572991,-0.155773029,-0.00370943616,0.109619558,-0.244690567,-0.0533374324,0.0749202371,-0.0759181082,0.555407047,0.351661384,0.0173433293,-0.119126305,-0.395431846,-0.0499289818,-0.0700385869,-0.170923039,0.105486967,0.209916696,0.69185698,-0.513938189,0.115241483,-0.231360212,-0.150376394,0.207514375,0.536813438,0.171330884,0.121837892,0.341865003,0.138137206,-0.238722086,0.374011368,-0.259622067,0.0285742953,-0.543224871,-0.188992202,-0.217277989,0.459493279,0.144051254,-0.42885384,-0.0705143213,0.028451236,0.0873737335,-0.0803572759,-0.314522892,-0.8984375,0.9375,0.243224412,-0.103997387,-0.173308,0.920572937,-0.188918844,0.34363839,-0.267445832,-0.0595507547,0.538938463,-0.235851333,0.204537585,0.0920293629,0.639490902,0.0327089019,0.197282031,0.437349766,-0.259877473,-0.385447383,0.265513629,-0.152377725,-0.077635169,0.114062361,-0.368289262,-0.269506037,0.0370826535,0.220717922,-0.147919923,-0.368095934,0.928385437,0.71875,-0.0761926547,-0.309541315,-0.232818946,-0.131855011,0.237800971,0.0323732197,-0.0426889546,-0.318479568,0.0358886719,-0.767968774,-0.204089329,0.374954939,-0.225153565,-0.591166854,0.160147503,0.494531244,0.331837952,-0.111283258,0.152809381,0.650669634,0.364127189,0.0570263527,-0.0778575465,0.0658988804,-0.219288692,0.385549843,0.0433231294,-0.460267037,0.197295293,-0.216830254,-0.346529454,-0.573848069,0.184111789,-0.000849150354,0.462744862,0.2387954,-0.674218774,-0.205505118,-0.0979119912,0.0957265422,0.113548614,0.178281248,0.0742254406,0.339913845,-0.204503462,-0.306542099,0.122029163,-0.263706267,-0.12698096,0.0267455187,-0.661358178,0.389775157,-0.423621804,0.221225992,0.523506641,-0.0912917331,-0.0673979446,-0.145026132,-0.525345206,0.120293535,-0.386704713,-0.348626882,0.85546875,0.191885233,-0.264592052,0.256934881,-0.511781275,0.790527344,0.198139057,0.0505557619,0.0251971446,0.0240967479,0.0410268456,-0.641637743,-0.517187476,-0.130403787,0.568050981,-0.0347736329,0.591532946,0.515019834,-0.90234375,0.250146598,-0.102767795,0.84765625,-0.0227603689,-0.107701197,-0.0761414021,0.114826053,0.360288471,-0.618949115,-0.0681044459,-0.191374943,-0.259566575,0.0332194008,-0.0174408741,0.217901215,0.0781355724,0.0413425267,-0.0402031355,0.298732638,-0.303685457,0.517578125,0.85546875,-0.23531723,-0.470994622,0.318144828,0.568847656,-0.239081949,-0.224485978,-0.249261275,0.512304664,0.547656238,-0.170902774,0.250122905,-0.535030246,-0.267495811,-0.503648698,-0.0558704212,0.101804629,0.102295473,0.08568082,-0.607047856,0.42344299,0.638139188,0.0137076303,-0.125555187,0.192920923,0.479492188,0.682924092,-0.447840065,0.0416801721,0.0518659987,-0.307676971,0.731847405,-0.0239026286,-0.369030356,0.500668526,-0.143989146,0.0112649798,-0.138714865,0.527083337,0.591922879,-0.0739454776,-0.218763292,0.0186384991,0.294961214,0.166114524,-0.0686336532,0.611083984,0.0176441092,0.626790345,-0.0622061677,0.245600358,0.00656996854},{-0.55126953,-0.2781424,0.06931739,0.4501465,0.24010848,0.40290543,0.06688578,0.04129253,0.06739025,-0.17086127,-0.20117955,0.05711309,-1.0,0.3681001,0.34960938,0.00984043,-0.3203628,-0.00540883,-0.29498428,-0.27046743,0.4833261,-0.47813514,0.26653644,0.11694449,0.25003624,-0.35357004,0.05777402,0.5952577,-0.12344278,-0.01819358,0.06813157,-0.10348412,0.12538764,0.26856866,-0.2754581,-0.00345894,-0.10179426,0.63411456,-0.24107921,0.04756632,-0.1625863,-0.31835938,0.98828125,0.35725912,-0.03553919,-0.44820645,-0.5796046,0.13963367,0.448349,0.1938815,-0.5666316,-0.23936245,0.15330149,0.6551339,-0.00613745,-0.67545575,0.07547485,-0.28698337,-0.03534628,-0.34664932,-0.36327198,0.19288567,-0.3271226,-0.44943428,0.07150602,-0.12156747,-0.01782195,0.64242786,-0.00561083,-0.08015003,0.12133622,0.40802953,0.1474574,-0.3086309,0.02681883,0.29804942,0.3985156,-0.4796596,0.01113812,0.00156666,0.419009,0.15524587,-0.30654165,-0.20406087,-0.182595,0.33020753,-0.05122961,0.17484766,0.7596354,-0.370229,0.0937025,0.5380544,0.14692473,0.8016183,0.00695449,-0.18365341,-0.43823785,-0.470001,0.01574714,-0.49835324,0.17772982,0.14065017,-0.32305908,0.03329576,-0.2929608,0.5896267,0.08692098,-0.69084823,-0.05947089,0.23585649,0.07520279,0.03917881,0.64941406,0.09206373,-0.0288513,-0.22698611,0.2743818,-0.64682114,0.02394409,-0.07423693,0.36474225,-0.05374378,0.09425735,-0.23251149,-0.06001282,0.62220985,-0.32040092,0.45678192,-0.4969618,-0.06383155,-0.44809073,0.54740286,0.04592671,0.26853237,0.03321482,-0.18800041,0.01168035,-0.36515367,0.18695974,0.3690914,-0.1767106,0.6609375,-0.0915647,0.2674696,0.6551339,-0.6414931,0.2675246,0.7012868,-0.12255368,-0.43042117,0.262725,-0.10236879,-0.34752393,-0.07838238,-0.6559245,0.08129071,0.08373914,0.47556213,-0.08715875,-0.1728976,0.8076172,0.14060785,0.52749753,0.03575274,-0.08766527,-0.18649973,0.679362,0.39239645,0.49797586,-0.414439,0.04271884,0.87890625,-0.07006973,0.3484959,0.18305315,0.21725385,0.2406999,-0.46289942,0.00649901,-0.3320375,0.20312195,0.30855644,-0.25284225,-0.36206597,-0.69441104,0.1547776,-0.14746094,-0.3819354,0.6229745,0.08980614,-0.40622818,-0.03725163,0.27320772,-0.07715745,0.45509237,0.29100093,0.26167747,0.46954054,0.6189516,-0.23033337,0.01499627,0.14014964,-0.10639655,-0.21285345,0.28114927,0.28584504,0.43460786,0.4333008,0.05681184,0.02074587,-0.33998895,-0.09689385,-0.22358759,-0.06548219,-0.15327656,-0.30457452,-0.12693626,-0.23930728,0.31241077,0.03660291,0.1062232,0.2416649,-0.16160691,-0.17581588,0.13717675,-0.68880206,-0.17243044,0.14897986,0.42282814,0.23586373,-0.04869414,0.04866892,0.12842585,0.5277496,-0.00927986,-0.17680965,0.40936548,0.04931368,0.4852273,-0.5851863,0.7358218,0.07963257,-0.42107832,0.09569835,-0.27336237,0.02213931,-0.09597928,1.046875,-0.1337852,0.51660156,0.18900311,-0.01121047,0.12988147,0.36422193,0.4293173,0.05576714,-0.5564732,-0.15964074,-0.34591028,-0.4596946,-0.19144301,-0.0130072,-0.12056207,0.13818543,0.02613621,-0.21501775,-0.3330118,-0.20359045,0.10176716,-0.16600688,-0.0683651,0.25393787,0.06589634,0.02451344,0.56416786,0.25573426,-0.09665944,0.29871282,0.8046875,0.18112323,-0.09743501,-0.04933008,-0.87630206,-0.18555868,0.03442046,0.20013002,-0.07770488,-0.01533328,0.83984375,-0.2714316,-0.12481715,-0.02670022,0.13910078,-0.07910634,0.21580777,-0.58603513,-0.04923627,0.04258662,-0.11063766,0.37106448},{-0.327018231,0.0847110525,-0.0118605029,-0.0741350725,-0.573784709,-0.0574557893,-0.25769043,0.643554688,-0.00839761645,0.408112466,0.111094363,-0.272519439,0.00805360451,-0.441373706,-0.0846515447,0.412970841,-0.222651854,-0.615234375,-0.0692978874,0.266707242,-0.0352476314,-0.145484239,0.46583581,0.191843078,-0.552664638,-0.100333408,-0.217785105,0.0824957639,0.0401641168,-0.269640297,0.522544622,-0.542724609,0.51171875,0.395110309,-0.0604394041,-0.123990923,0.310478598,0.0573884957,-0.272286266,-0.064909175,-0.154382914,0.0202141311,-0.0104988264,0.101811923,0.37882039,0.192934781,-0.0976675078,-0.0206258353,0.285184562,0.070065029,-0.0878799558,0.292940438,-0.112079069,-0.0150669292,0.183534831,0.501112521,-0.236234829,-0.704044104,-0.204163998,-0.471894532,-0.345695853,-0.0187686309,0.112982385,-0.0751727596,-0.0164180174,0.229608446,-0.277350157,-0.419489771,-0.209949344,0.606541038,-0.9765625,0.366158009,0.377068013,0.21541442,-0.397470415,0.654575884,0.278311968,-0.324186891,0.17718865,-0.314322382,-0.152838469,0.00322623178,-0.127911329,-0.300849617,0.0236968994,0.186538771,0.335086405,0.319318086,-0.353473157,-0.0978960693,-0.429717332,-0.35733366,0.0388463922,-0.568619788,-0.12551707,0.186084658,-0.73828125,-1.3828125,0.00677509326,0.599283874,-0.140692964,-0.389380366,0.101595409,0.121640377,0.350538462,-0.0255866889,-0.182594582,0.219340965,1.1328125,0.508479416,0.0547231026,-0.381733507,0.277196348,0.100807182,-0.456770837,-0.208508939,0.90625,0.95703125,-0.828125,0.0644601658,0.138613701,-0.353417963,0.33480525,-0.447790831,0.264611155,-0.530993879,0.0276139677,0.240300119,-0.180133551,0.279225677,0.173810035,-0.0629888475,0.381784528,-0.17046313,-0.180701017,0.317297399,0.257733732,0.206558809,-0.454193681,-0.108427353,0.162613347,0.172999993,-0.257806331,-0.210453525,0.351624757,0.225186229,0.552262902,0.296898216,0.18449147,-0.106430188,0.327112079,0.169246435,-0.15093568,0.268509805,0.293885976,0.166949376,0.203693762,-0.59000653,-0.683221698,-0.118619926,-0.776633501,-0.128394544,0.379903257,-0.12597844,0.073707521,-0.253908783,-0.223243773,-0.45859924,-0.156277165,0.151800781,-0.611427426,0.0321419723,-0.199615344,-0.172324479,-0.460713565,0.579900563,-0.199631006,0.191578329,0.0459120125,0.432329953,0.166004553,0.481262207,0.14159365,-0.275259435,0.473122329,-0.144014463,0.519708812,0.132334113,0.119348772,-0.0420254804,-0.452211857,0.693750024,0.29692924,0.0659269169,-0.190438181,0.380859375,-0.0795537233,-0.239720896,0.152851358,-0.671135962,0.243605807,0.208036155,-0.259782284,-0.335916638,-0.142126516,-0.170366198,0.0717253163,0.015211991,0.396418393,-0.564555943,-0.299737811,-0.109098479,0.0295199566,0.16691941,0.613420784,0.601128459,-0.4910689,-0.39580828,-0.324155122,-0.337743402,0.119922034,0.133281216,-0.374094903,0.492153823,-0.374960929,0.391532779,-0.191350564,-0.0985908508,0.505859375,-0.7578125,0.226013184,-0.365392089,-0.772135437,-0.717578113,0.663392842,-0.147936299,0.101801023,0.343704224,0.201626003,0.14842695,0.0102510611,-0.300744146,0.458319038,-0.582295179,0.0744698495,0.263632417,0.82421875,0.338957965,-0.163054332,0.394758344,0.360158175,-0.482148081,0.407331347,0.0815640911,-0.265608311,-0.543178499,-0.443286121,0.285165608,0.6953125,-0.0722921342,-0.483476549,0.112511612,-0.328125,0.118142396,0.281143695,-0.0386078469,-0.25980711,-0.947265625,0.129898176,-0.184555978,-0.412134588,-0.0717383251,-0.403151035,-0.249804109,0.276354969,-0.407098204,-0.197278619,-0.622802734,-0.222664461,-0.313339353,0.465144217,-0.586626828,0.000979172066,-0.207137436,-0.403166115,-0.414995968,0.0354000814,-0.383487225,0.259725392,0.248806238,-0.190840513,-0.677837193,0.0636013597,0.659254789,-0.264708877,-0.357485205,-0.110548168,0.0883758292,-0.397616088,0.402362615},{0.347619265,-0.845703125,0.146024987,0.713191092,-0.702656269,-0.257768452,-0.532366097,0.118393525,0.255859375,0.0666503906,0.480810553,-0.122552954,0.0263334457,-0.194171622,0.0370207652,0.0189640578,-0.134797558,-0.025685614,-0.0217336081,-0.904947937,-0.14643915,0.0673968419,0.0476435684,0.434630811,0.239628077,-0.0103799868,-0.1232953,0.13278611,-0.275469482,0.387640029,-0.0320325829,0.393525094,0.292045116,0.595533311,-0.1475164,-0.377077639,0.0980965272,0.0238003675,-1.03125,-0.462590158,0.37109375,-0.23101081,-0.134757847,-0.172289044,-0.00855146162,-0.196748316,-0.504045784,0.273551762,0.014311566,0.146491081,-0.0810679942,0.751953125,0.0140498234,-0.48056519,0.296862304,0.215782553,0.345703125,-0.311438859,0.185572639,0.375689328,0.0923216864,0.583455861,-0.34545213,-0.165514663,0.084223628,0.390428036,-0.00575265056,0.253793359,0.0869394466,-0.0680467114,0.222681001,-0.371918857,0.468543202,0.0823143721,-0.438486725,0.091335386,0.580672562,0.638221145,-0.0813018605,-0.443214089,-0.672712028,0.0672707409,-0.0849496201,0.134760782,-0.334112942,0.107657067,0.132283598,-0.0880884528,-0.9296875,-0.0493434258,-0.0358732343,-0.702343762,-0.301772833,0.272473812,-0.135163292,0.48166725,0.359252512,-0.063973859,-0.143170506,0.332870901,-0.0538255014,-0.517103016,-0.724609375,-0.240716249,0.132774144,0.000720221957,0.304557294,-0.416852683,-0.127477422,-0.397257894,-0.0141653512,0.421642482,-0.273273975,0.292028069,0.691874981,-0.124635175,0.101706356,0.0489341728,-0.214898124,0.118590809,0.0940369815,0.142549232,-0.0339867249,-0.369162202,-0.0473325141,0.0732723027,-0.199652135,-0.121751621,0.322121829,-0.0465954356,-0.199727952,0.19190681,-0.718124986,0.361328125,0.212981462,-0.130383998,0.0802498013,-0.0133681167,0.0536865667,-0.164599493,0.539140642,0.743303597,-0.224135369,0.055324506,0.410170496,0.0532526746,-0.458754599,-0.46611926,-0.348558366,-0.0722388774,-0.187945753,0.706250012,-0.367171496,0.453843057,0.00716341333,-0.645200908,0.113672547,0.101275556,-0.310541958,-0.502192259,-0.145461261,0.027707763,-0.139168367,0.0157192256,-0.198103756,0.364305854,-0.197677657,0.12841101,-0.60132575,0.228567541,0.443727016,0.254861265,0.441631615,-0.559709847,-0.0742096081,-0.42515251,0.0521060973,0.255804211,0.0571420304,-0.136669859,-0.0177802555,0.6953125,-0.111508891,-0.386582494,0.300788611,-0.334858775,-0.573636949,1.05859375,0.974609375,0.491173595,-0.167478368,0.0344149992,-0.0944918245,0.335859686,-0.201188117,0.34569335,0.245713338,-0.227097705,0.469052255,0.0034731389,-0.55030489,-0.390501648,0.205713794,-0.295924634,0.152793095,-0.246609718,-0.312416703,0.143023863,0.621916115,0.450153768,-0.328062266,0.32718879,-0.282216549,0.279254884,-0.77734375,0.294914931,0.0827566162,0.219296411,-0.145018905,-0.141107589,-0.0818048641,-0.302820027,-0.0179005153,0.239617959,-0.16655691,-0.556396484,-0.737500012,-0.143028617,0.393890887,-0.0271416958,-0.517842054,0.202135295,-0.293114781,0.0531918481,0.217217907,0.557146966,-0.109595008,-0.11349979,0.0685897544,0.82421875,-0.291816086,-0.0550676286,0.218261719,-0.852343738,-0.174264461,-0.511263013,-0.546875,0.31823501,0.202205047,-0.10083171,-0.336868852,0.531323731,0.238819316,0.101576939,-0.108082883,0.164540485,0.0966734961,-0.729166687,0.541949749,-0.395703137,0.501302063,-0.62890625,0.171389878,-0.360337704,-0.513177097,0.749348938,-0.0739686042,-0.0332724042,-0.277463764,-0.466145843,-0.138631985,0.221192896,0.293064028,-0.0197636355,0.0432794206,-0.96484375,0.180995136,0.00303597306,-0.382771134,-0.178618297,0.199803457,0.31640625,0.22165592,0.382831663,0.0740206614,-0.284165531,0.447073787,0.0483406484,-0.0146119623,0.144044697,-0.224107146,-0.213916719,-0.309596866,-0.0220856927,0.163051963,-0.252911836,0.412984073,-0.14308016,-0.626041651,-0.220133752},{-0.04906127,-0.07667697,0.29999328,0.28030327,-0.4033518,-0.0378592,-0.08864576,-0.636869,0.6167241,0.43824574,0.00569708,-0.35162535,0.18118808,0.7445313,-0.14549413,0.04360357,0.48962295,-0.2181409,0.07667463,0.20311855,-0.00538942,-0.17430775,-0.03750023,-0.15479489,-0.02968689,-0.07718474,-0.13378906,0.00416244,0.16797163,-0.2290233,-0.63442093,0.12424373,0.6340014,0.04814783,0.1650879,0.29866537,0.56057227,-0.13422503,0.85,-0.40101779,0.60814524,0.09714475,-0.06467777,-0.23340099,-0.16361381,-0.3573579,0.19810688,-0.09594572,-0.36619002,-0.02466228,0.28714845,0.57060546,0.07326141,0.52894175,0.16985597,0.13865961,0.0866311,-0.17288639,0.35831055,-0.1656009,0.05426222,0.09861656,0.40577713,0.03979604,-0.0930585,-0.1362041,0.58489585,0.18845643,0.20712516,0.10546814,-0.24510539,0.3065006,-0.01540302,-0.48016617,-0.00875096,-0.6444639,-0.49286956,0.40328813,-0.1470098,-0.01954507,-0.11715258,0.73095703,-0.5155084,-0.34169152,-0.27054256,0.08667151,-0.01656073,-0.20407444,-0.63789064,0.243077,-0.0793488,-0.20362979,0.37685785,-0.4934495,-0.7519531,-0.5016364,-0.22647578,0.2713623,0.31353158,-0.07225998,0.00377409,-0.13038486,-0.2782466,-0.2831124,-0.39353868,0.3153154,-0.2625526,0.1533283,-0.53064907,0.26752278,0.12205017,0.0705855,0.09128556,0.36908606,0.78515625,-0.3251475,-0.02176011,-0.2597963,-0.08831044,-0.57238054,0.23449029,-0.44036788,-0.10083831,0.18110432,-0.4013116,0.0598058,-0.26856542,0.28510565,-0.38368413,0.08695734,-0.644768,-0.17237149,-0.29787216,0.6615767,0.08768672,0.23337589,-0.25982183,-0.21485564,0.13475755,0.18649459,-0.31632528,-0.37885395,0.2733006,0.37314168,-0.75390625,0.32811943,-0.21283028,0.03967071,-0.7472426,-0.40118155,-0.34509858,-0.1581945,0.38640428,0.5529455,-0.12891607,0.02168818,-0.438374,0.30562338,-0.92689735,0.39280084,-0.6047092,0.19141278,-0.11062613,-0.17187046,-0.10078079,0.1606788,-0.39722034,0.4881904,-0.24065404,-0.5679687,-0.10522516,-0.1396614,-0.30473703,0.3009453,0.00808234,-0.09864655,0.02800729,-0.34859103,0.26950538,0.15087989,-0.08761234,-0.05979059,0.51805717,0.23971222,-0.06160054,-0.48968506,0.30458665,-0.74902344,-0.3280513,0.17528483,0.43667242,0.84375,-0.7045759,0.3748758,0.98828125,-0.07813192,0.03160733,-0.15189189,-0.34665328,0.5480708,0.2890583,0.40812436,-0.9511719,0.40129206,0.16209856,-0.8284801,0.2108872,-0.44923753,-0.29192948,0.04167547,-0.37105855,-0.02505568,-0.25973862,0.3065564,-0.09887878,0.03479941,-0.02111137,0.60698783,-0.6183449,-0.2735141,-0.06762695,0.3750452,-0.14886025,-0.26731715,-0.06906173,-0.20111728,-0.03023873,0.11457778,0.08490609,-0.27929688,0.02323073,-0.11327142,-0.27430555,-0.28896606,0.7589286,0.27807686,-0.09642319,-0.177247,0.22310685,0.19469866,0.03619187,-0.03497105,-0.13870606,-0.4461914,-0.25291544,-0.13041592,-0.05431317,0.04721557,-0.22115858,-0.47235578,-0.01985782,-0.5119555,0.96875,0.63468426,-0.3583816,0.23677966,-0.19966634,-0.26941168,0.18547146,0.00969917,0.08982362,0.23437697,0.27514568,-0.13668872,-0.6201562,0.23144099,0.06641521,0.26555523,-0.00578407,-0.36130252,0.04578691,0.18113366,-0.2724029,0.27047917,0.02462777,-0.17727812,0.11596274,0.02559829,-0.05408439,-0.5746528,0.16546734,-0.134236,0.61328125,-0.42666176,-0.03723677,-0.0710344,-0.17478545,0.19397059,0.18009727,-0.06288619,0.18349786,0.02638075,-0.2880351,0.16353749,0.2656387,0.23433296,-0.12397058,-0.24019681,0.5228226,0.24022217},{-0.24275133,0.0177453123,-0.214788333,-0.478146106,-0.53894645,0.0815626979,0.431539595,0.26171875,0.29783228,0.515882015,0.382421881,-0.14352724,0.256795257,0.308520257,-0.00671266904,-0.066141583,0.661272347,0.0849398598,0.0563928261,0.0120994058,0.569707334,0.345754087,-0.025145378,1.0078125,0.0973871276,-0.491336137,-0.175759315,0.150378153,0.559789538,0.0142421788,-0.198617518,0.0322193652,0.704241097,-0.320209712,-0.444081187,-0.568296373,-0.248620346,0.123461366,0.00527063664,-0.131871969,0.684849322,0.217234328,0.0910273716,-0.551737905,0.439978153,-0.217315391,0.257767916,0.495708615,0.349591285,-0.152852669,0.0503994375,-0.419930845,-0.18654342,-0.41985333,-0.119603351,0.30754441,-0.192323416,-0.143617317,0.833984375,0.0374712273,0.216805011,0.713541687,-0.181095719,-0.051754117,-0.203064412,-0.0601414889,0.501019001,-0.0840033889,-0.345785886,-0.102301158,0.271409363,-0.188385636,0.191929936,0.181064576,-0.566553652,-0.0957467332,-0.163956851,0.2744115,0.100803658,0.503393292,-0.437379807,-0.0437164456,-0.0402857549,0.21685864,0.333949804,0.285134465,0.251745224,0.427700937,-0.7109375,0.421927094,0.327804804,0.228988931,0.7578125,0.509650707,-0.0174819976,0.661458313,-0.583251953,0.0771430656,-0.0851094052,0.306625724,-0.180691898,0.0698432326,-0.0857190341,0.185533792,0.402435303,-0.314538479,0.752734363,0.412146926,0.310745746,-0.0441983677,-0.0949160978,0.348344147,-0.05974916,-0.0317084119,-0.0187628455,-0.496723801,0.0209769867,-0.122538805,0.295908362,-0.830729187,0.661718726,-0.229562283,0.0566221923,-0.269494146,-0.200274378,0.17376627,-0.131796166,0.0307991523,-0.31640625,0.236350641,-0.51181978,0.76171875,-0.20660156,-0.0358895659,-0.44985652,0.268523812,-0.308562368,-0.473224431,0.583086967,0.144021347,0.431670904,-0.310577333,0.24417299,-0.39822939,-0.586875021,0.018111499,0.0605050363,-0.203166559,-0.00771788694,-0.0530069917,0.0727438778,-0.548549116,0.440290183,0.0488460697,0.0253380965,-0.319264799,-0.32130149,0.0200655442,0.00786092598,-0.189922407,0.61328125,0.0668677762,0.578251004,-0.277259678,-0.374053955,-1.00488281,-0.274308741,-0.269591898,0.230897486,0.436635256,-0.119177237,-0.257767856,-0.177786738,0.0637325048,-0.537079334,-0.045889914,-0.171058938,0.729166687,-0.0658950508,-0.184080675,0.294962287,-0.0466308594,-0.0563856177,0.101756923,-0.52798152,-0.698988974,-0.221197173,0.580915153,-0.102286316,0.0332985148,-0.0268201772,-0.000140510689,0.00871973019,0.811197937,-0.0477393046,0.0590808205,-0.374083221,-0.646846056,-0.5688802,-0.512015939,0.665765226,0.0983560607,0.278307855,0.681396484,0.386449367,-0.234357521,-0.507008255,-0.25294292,-0.195358127,-0.245072186,0.448681653,-0.0341796875,-0.151331708,0.000101647558,0.143563032,0.357409179,-0.358283341,0.533156633,0.26761508,-0.0142020006,0.026027834,0.399323732,0.290986568,0.3358621,-0.0808707774,-0.00872414,-0.334044695,0.294807464,0.0472821482,-0.501024604,-0.227047727,0.304669589,-0.250614077,0.0328468606,0.335836887,0.5,0.0812743008,-0.0149190584,0.734205186,-0.28807357,-0.186670914,-0.772786438,-0.257716745,-0.942522347,-0.198161602,-0.395378053,-0.513581753,0.233852908,-0.360351562,-0.193367958,-0.175266638,-0.639011562,0.694140613,0.505936265,0.0171976704,-0.41417858,0.602213562,-0.0463949777,0.0124295838,-0.579083145,-0.243117735,0.14355135,-0.0241321456,-0.0796025917,0.0325022936,-0.0563434921,-0.732421875,0.118426286,0.397633284,0.252095312,-0.692138672,0.462851554,0.326290846,-0.612500012,0.119383737,-0.15477325,0.497558594,0.167973727,-0.327016771,0.16056785,-0.398747534,-0.107160002,0.264726251,-0.8046875,0.466692239,-0.539281249,0.169956923,0.122288421,0.366232008,-0.89453125,0.062338274,-0.496885568,-0.733473539,-0.0489957295,-0.472409308,0.163600206,-0.392521501,0.392795146,-0.129954919,0.0583683699},{0.03561249,0.0952540338,0.315466464,0.32322365,0.00429281173,0.339785457,0.575334847,-0.134756505,-0.620383501,-0.096372433,0.0248990338,-0.241739407,-0.385895729,-0.344581872,-0.0500114746,-0.224833652,0.74609375,0.383797348,0.4185642,-0.728645861,0.736607134,0.202631131,0.0265609249,0.0133678988,0.0649674758,0.346812844,-0.247060001,0.254908651,0.146017253,0.646763384,0.0157680791,-0.287005544,-0.0487712286,0.301750571,0.0253879745,0.0149954176,-0.323163778,0.153813496,0.0656684265,0.00809321832,-0.221632585,0.281066656,-0.0748460591,-0.145429507,-0.016766835,0.0519716404,0.553125024,0.193757653,0.756747186,-0.637109399,-0.0176374018,-0.0195705965,0.486860782,-0.0528516062,-0.486997753,0.121564306,0.9140625,-0.953125,-0.250543505,-0.0594332442,-0.163554952,0.373263896,-0.534143507,-0.246516854,0.496771932,-0.518614948,-0.229905546,-0.0257907864,1.078125,0.213401735,-0.197854504,0.167964533,-0.210401759,0.425091922,0.214797243,-0.204587296,-0.275358826,0.225569844,-0.122339047,-0.0651808605,-0.0296210237,0.208923817,0.136198446,0.182540685,-0.480933785,0.44905135,0.271564096,-0.185138166,-0.203177199,-0.109888338,0.627511144,0.14794594,0.434666067,0.483442158,-0.198813543,-0.735351562,0.0309958197,-0.204068273,0.240597561,0.24210462,-0.421312511,0.160713196,-0.258632511,0.00494511193,0.14263168,-0.139140517,-0.000100002806,0.256857365,0.278338283,0.290978611,-0.372977436,0.288181692,-0.0974073187,0.0360292867,0.116648614,0.246086165,-0.308602273,0.184584752,0.0735588521,-0.054292392,0.543108284,-0.167485997,-0.0030052627,-0.0810217783,-0.54296875,-0.103746504,0.327238709,0.145471871,0.135226786,-0.123939224,-0.0952381864,-0.624023438,0.137701631,0.0537383519,-0.0486022644,0.174385548,-0.224587575,-0.165992469,0.318418741,1.19010413,-0.398418158,0.364810586,0.676757812,0.0322720148,0.444304436,0.101293251,-0.511406243,0.0478444174,0.386624843,-0.656821668,-0.0957820863,-0.22312361,-0.235428259,0.241179734,0.47057575,0.0959421471,-0.262616724,0.114458598,-0.00400800537,-0.333946615,0.257702917,-0.0161833297,0.0693349019,-0.578645825,-0.691817462,-0.00850091781,0.118842378,0.0440615714,0.679296851,-0.113767274,-1.0859375,-0.227095351,0.364149302,-0.614062488,-0.221685141,0.482877612,0.365275741,-0.0549389422,0.783203125,-0.355489969,0.393397748,-0.320275307,-0.213834241,0.0536639206,0.546431124,-0.197753906,-0.380758852,0.118831761,-0.0902871564,0.303653181,-0.0898566544,0.194036379,-0.5426054,-0.129368916,-0.466870576,0.137205899,-0.207054332,0.0427412204,0.0355421565,-0.0432168916,0.27237016,-0.190868005,-0.392610848,-0.0703138039,-0.18114014,0.0785978213,0.0634057298,-0.586269975,1.1640625,-0.195690468,-0.0808070824,0.41798684,0.0985822976,0.513734877,-0.635602653,0.118210502,0.620312512,-0.0594579801,-0.0611180812,-0.181210548,-0.0252903719,-0.151861906,-0.25287357,0.111092821,-0.0173890721,0.156262159,0.121092476,-0.0615713038,0.161566839,0.0367683247,0.326905578,0.231342077,-1.015625,-0.169982001,-0.529241085,-0.00574233988,-0.296953529,-0.0656102449,0.0461380184,-0.171777904,-0.0289778616,0.332899302,0.112032473,0.176211447,0.196309924,-0.654375017,0.0749625936,0.135788113,0.285244226,-0.221632719,-0.136261195,0.68359375,0.362249196,-0.532714844,-0.0628075972,-0.0577175058,-0.590401769,-0.0834806338,-0.00341596594,-0.171371609,-0.261661112,-0.0695824176,-0.0616886653,0.195218682,0.17481333,0.0593870208,0.2960805,-0.307550132,0.0874297768,-0.400376856,0.398542136,0.794363856,-0.0617370605,0.694234908,0.100899056,0.358313531,-0.117222011,-0.0577679016,-0.760156274,0.515384614,0.290961862,-0.0606471226,-0.197559282,-0.349620342,-0.139648438,-0.029938221,-0.187510937,0.0673468485,-0.142533898,-0.473994493,-0.281242609,-0.0759363621,0.114981316,0.222063243,-0.38671875,0.547056675,0.0625406876,-0.626880765,-0.498423785,0.177733049},{-0.18345785,-0.70647323,-0.47573492,0.20606881,-0.06740529,-0.32588837,0.38071594,0.2202554,0.7419819,0.4600718,0.77070314,-0.22219248,-0.03830499,0.25490233,-0.30364802,-0.04463168,-0.39378494,0.16703816,-0.03517094,-0.08245608,0.5076172,0.796875,0.17042366,0.28802198,0.32018954,0.02104696,0.71875,-0.36121324,0.31446728,0.2693718,0.13138376,-0.6217448,0.08764584,0.5035511,0.43180338,-0.34556928,-0.08225738,0.46583948,0.39170754,0.16843049,0.21582773,0.33803803,0.4910437,-0.00252095,-0.3984978,0.15522905,-0.07547075,-0.13812435,-0.44296628,0.68028843,-0.23343314,-0.20106937,-0.20952249,-0.665625,0.48851445,0.0246264,0.1899301,0.3548584,-0.14009191,-0.1542983,-0.09566025,-0.24965413,-0.42300758,-0.21632962,0.19781524,0.71313477,-0.06235707,0.3699052,-0.02575114,-0.18411274,-0.28309977,0.5196126,0.4410944,0.66748047,0.07183466,-0.32614228,0.4727424,0.44011718,0.37108234,0.21579774,-0.04257903,0.11765644,-0.03535805,0.32714844,0.20949836,0.36118522,0.6003196,0.37503916,-0.09374461,0.656808,-0.16016068,0.01881459,-0.5235206,0.03797827,-0.6048177,-0.57981,1.40625,-0.2695146,0.06494198,-0.6684966,0.02710295,-0.30271688,0.4327819,0.3026941,0.06420077,-0.2987942,0.20652428,-0.13477518,0.7248264,0.60807294,0.03690234,-0.03690164,-0.06634318,-0.20453714,-0.09838921,0.05623081,-0.06933368,0.23982605,0.37707168,-0.11234211,-0.27049333,-0.03576068,-0.01586633,0.0303193,0.0360258,0.0993464,-0.00728101,-0.02263429,-0.99609375,-0.1003499,0.8125,0.04478971,-0.62990785,-0.28692746,0.17961046,-0.01592033,0.13720557,0.23572107,0.02292103,1.0016276,-0.3463652,0.10272834,-0.9238281,-0.05878108,0.3719455,-0.02197832,-0.22358115,0.54614013,0.5847039,-0.87276787,0.10206556,-0.17527379,-0.5332984,0.39458176,0.9902344,0.41757813,-0.25012955,-0.4587302,0.35718513,0.13671538,0.38382056,-0.11302955,0.20694041,0.07276896,-0.03696048,-0.2695099,0.0121402,0.07496651,0.06641246,0.6305339,-0.18850584,0.06207928,-0.39938447,0.00688254,-0.23381151,-0.1753042,0.12484232,-0.04399944,0.15378821,-0.48797357,0.12158714,-0.19096908,0.00955502,0.37401378,-0.628125,-0.00387088,0.03263582,-0.12571438,-0.48867187,0.2890417,-0.23137817,0.57387906,0.16058175,0.10521951,-0.28616008,0.23144995,-0.7558594,-0.00580105,0.02647829,0.4119295,0.06364924,-0.23586887,-0.145021,-0.28222656,-0.2792543,-0.07010338,0.290879,-0.11574735,-0.18015738,-0.16701359,0.05618224,-0.36515126,-0.21284597,-0.15623963,-0.05358317,0.47712055,0.50283515,-0.08836871,0.10761975,0.7685547,-0.17185308,0.16893062,0.14897043,0.22753154,-0.18262315,0.26934305,0.06688933,0.05568448,0.06163335,0.523068,-0.8453125,-0.17087041,0.11642261,0.61580884,0.2841426,-0.03438605,0.32814974,0.02062365,0.3028423,-0.5327009,0.30663761,-0.23586915,-0.05639385,0.02991669,0.18506177,0.3183167,0.6458333,-0.21199965,-0.10304428,0.6495028,-0.12465842,-0.02535438,-0.13855655,0.38671875,0.06981616,-0.12987466,-0.02784378,-0.23338914,-0.5896701,0.14165884,0.65262276,-0.24423534,-0.0922894,0.08128373,0.9296875,-0.7988281,0.4098987,-0.1601894,-0.67329544,-0.27337253,0.10051142,0.32219467,-0.18754391,0.05652225,0.3642578,0.45798704,0.314507,0.51814514,-0.01639754,-0.09623028,0.2607667,0.15862527,-0.05384482,-0.1040123,0.44014424,-0.09086625,0.7074908,-0.5013317,-0.06332298,-0.4070349,0.43296185,-0.17957625,0.12570272,-0.4119098,0.3928079,-0.02142931,0.02118605,-0.16153154,-0.2342912,0.3474966},{0.6380208,0.37877417,0.01233653,-0.28836307,0.03721432,0.04112101,-0.13474414,-0.82109374,0.12933949,0.69324446,0.03621347,-0.18065989,-0.08837056,0.6171875,0.15728343,0.0978554,-0.41911554,0.03933056,-0.18404217,0.08351753,-0.3838956,0.22891551,-0.06903323,-0.2843192,0.13724114,0.03927499,0.10612807,0.08935809,-0.06423638,-0.35337746,0.7871094,0.32422847,0.13286346,-0.41307443,-0.09521715,0.40126202,-0.28714743,-0.38478246,-0.05485659,-0.17922634,0.2870235,-0.8194444,0.04590812,0.1694226,-0.35925293,-0.09497596,-0.33787897,-0.5378125,0.06863222,-0.05639806,-0.09860279,0.12506072,-0.4973856,-0.12552316,-0.25881428,-0.03680976,-0.13326083,-0.2026327,0.24071965,0.16295461,-0.38096857,-0.4351679,-0.2655542,-0.4733745,-0.03502087,0.36409646,-0.32042578,0.08374733,0.16304134,-0.345528,0.5739943,0.18605614,-0.07883304,0.00402896,0.24511719,-0.500968,0.08445183,0.20886411,-0.20404929,-0.02685264,-0.3688802,-0.6120257,-0.33016184,-0.94140625,0.30081236,0.05272626,-0.33004212,0.35543743,-0.06915418,0.50262785,0.19524929,0.16305609,-0.1308606,0.05001184,-0.05566664,0.08712044,0.44843066,-0.55839443,0.328125,-0.9078125,0.33384874,0.08220351,0.3807422,-0.7875,-0.20213996,0.65340906,-0.02678092,-0.5073117,0.09617051,0.14789277,-0.42294815,-0.56595796,0.369126,-0.54352677,0.4063314,-0.25778362,-0.06301299,0.1557287,0.3300412,0.19919871,-0.01014711,-0.09350425,0.42222613,-0.03297253,0.38083225,-0.32218993,0.22708185,0.15770645,-0.560791,0.04956479,0.07638411,0.21781665,-0.11978485,-0.42492676,0.11839391,1.0234375,-0.06344973,0.48707932,-0.06929996,0.0451683,0.109375,-0.68013394,0.13924402,-0.0500496,-0.16453142,0.03776223,-0.16549222,-0.14794579,-0.10133842,0.07100027,0.22259282,-0.2647398,0.1782825,0.4901517,0.07323908,0.07301351,0.00722548,0.40325,-0.27334502,-0.31626943,0.02585167,-0.32602596,-0.2367672,-0.37206158,0.86328125,-0.06978022,0.49872226,0.02319154,-0.21777344,0.40707743,0.7084961,0.61789775,0.05332432,0.12746459,-0.01141598,-0.62456596,0.4113093,0.4172712,-0.18943913,-0.21435456,-0.25872764,0.40107995,0.14650673,0.65546876,-0.2664686,-0.6469494,-0.17863125,0.27734375,0.10617453,0.40039062,0.24465361,-0.02675755,0.53116125,-0.41454083,0.19187964,0.08662017,-0.13867188,-0.10131781,-0.08888073,0.59331596,-0.32525232,-0.03719581,-0.12598968,0.09841797,0.04531156,-0.75989586,0.30840212,-0.22220027,0.70703125,-0.06149355,0.48404947,0.22809392,0.3691797,-0.34568897,-0.34368202,-0.35558432,0.1145511,-0.53125,0.37400523,-0.22164364,0.36702245,-0.5756392,-0.08834589,0.03170356,0.15086855,0.21731772,-0.20514877,0.02782269,0.12211251,-0.22804596,-0.43686995,-0.8671875,-0.02835247,-0.225654,0.20560116,0.26152855,0.84244794,0.17872979,0.11910235,-0.1123255,0.48819247,0.29959783,-0.01791744,0.00731048,0.10299284,0.04150465,0.34837046,0.10451292,-0.484375,0.17140847,0.20265861,-0.3525875,-0.5467122,0.09157096,0.22900064,-0.08299033,-0.04076395,-0.01292239,-0.01526881,-0.28218687,0.4321875,0.3075266,-0.19577555,-0.18017212,0.2124367,-0.38703376,0.0568559,0.18311135,-0.2890625,-0.06492464,-0.4706875,-0.02770612,0.1547926,-0.10501909,-0.11361298,-0.4610897,-0.2465995,0.3778853,-0.94921875,-0.515625,0.07621909,-0.34165502,-0.26538086,-0.03758033,0.3826976,0.77734375,0.14694068,-0.22511603,0.03403339,0.32233313,-0.07716658,-0.06290306,-0.8378906,-0.1010144,0.19088872,-0.33400857,-0.09329279,0.14204906,-0.25027126,-0.4810749},{0.0445197187,0.288932651,0.397786468,0.468765765,0.162106872,-0.243073344,0.296801835,-0.715599775,-0.727864563,0.489149302,-0.0654517859,-0.289954901,-0.204543471,-0.0961802229,-0.275384277,0.519267619,-0.302837938,-0.574776769,0.20363836,-0.192395225,0.0912177786,-0.388728499,-0.325170696,-0.182090774,0.126931712,0.572610319,0.0681679994,0.284190565,-0.194369793,-0.958007812,0.103137828,0.0524399616,-0.0837161914,0.0355367996,0.232522905,-0.0579662435,0.0163938608,0.0320935585,0.0155514907,-0.681857646,0.396506906,-0.27341187,0.603069186,-0.127931774,-0.0452365763,0.301203549,-0.136739761,-0.876302063,0.039642401,-0.17775479,0.233843401,-0.740740716,0.0357333347,0.173243463,-0.0242860839,0.128895089,-0.447636276,-0.213352636,0.226575792,0.140273154,-0.50970459,0.180691645,0.153297827,-0.501834214,-0.536693156,0.452510118,-0.80859375,0.265647084,0.442498326,-0.301752806,-0.0249851104,0.215358227,0.239262179,0.323008478,-0.230418429,-0.151372865,-0.106884688,-0.0654545128,-0.0448786579,0.0529717356,-0.593098938,-0.675048828,0.319131792,0.754206717,-0.00392757962,-0.0871048644,0.458496094,0.525258482,0.105529346,-0.623828113,0.461605668,-0.585822582,-0.682391822,0.560028076,0.178655759,0.0450408943,0.164532796,-0.075452663,-0.25672403,0.222660333,-0.152400315,-0.149881974,0.0929863378,0.391537875,0.113740854,-0.515702367,0.0420633964,0.450086802,0.173330665,-0.369161725,0.132364303,-0.593999326,1.1640625,0.409199089,0.192866266,0.175274953,0.20507589,-0.442337543,0.620788574,-0.123997517,-0.304677814,-0.146460146,-0.0681830347,0.0221388265,0.0985923856,-0.29595083,-0.430675924,0.67578125,-0.829861104,0.521077454,-1.109375,0.656445324,-0.789550781,0.748579562,0.373858184,-0.380522639,0.340746611,-0.179217309,-0.142563522,0.730189741,0.1514249,-0.0596444309,-0.482265621,-0.34860459,0.0579666533,0.200725645,0.164952025,0.150353059,-0.245617732,0.352529764,0.00148695835,4.35106522e-05,-0.8359375,-0.0288677607,-0.296875,0.00282188482,-0.0355944522,0.281255782,0.121535562,0.423653752,0.0644627512,0.0544525348,0.932031274,-0.330205828,-0.873046875,0.147020817,-0.442823231,-0.0580216162,-0.429673731,-0.251885355,-0.0121181663,0.156701103,-0.234839007,-0.704861104,0.476888031,-0.00284709921,-0.187445745,-0.0905613676,-0.0906262696,-0.282229632,0.0644068643,0.0071631833,-0.0383533835,-0.0842429474,0.117407396,0.0783416927,0.0735303834,0.196140513,0.0173848029,-0.307632685,-0.263668299,-0.32220459,-0.121364802,0.179263145,0.20754692,0.984375,-0.148427233,0.234369591,0.348617464,0.204499424,0.034204185,-0.0505008176,-0.320376307,-0.161618382,0.242299259,-0.150375411,-0.0130539937,-0.759982646,-0.555030167,0.697998047,-0.141557544,0.0825263113,-0.544613481,-0.0418856032,-0.365147889,-0.172284991,-0.275450408,-0.462508976,0.122252814,0.33407867,-0.258805394,-0.0201602839,-0.0279722456,-0.0223033819,-0.0394599512,-0.326097965,0.0976819769,-0.780691981,-0.195271492,-0.0493601598,-0.127419993,0.376972854,0.0229981765,0.00679038791,-0.213296548,-0.452192158,-0.87890625,0.0611998811,0.41404286,0.214460582,0.351479858,0.418711483,-0.0788445696,-0.197251678,-0.0802745372,-0.448655695,-0.0646773875,0.122564763,0.0421068482,-0.146068349,0.834635437,0.105748504,0.203141525,-0.0653523728,0.0342855193,0.414966196,-0.123949125,0.146958441,-0.0467059091,-0.0445684753,0.316421002,-0.360315382,-0.184066221,0.26457268,0.432201236,0.438476562,0.380786121,-1.2890625,-0.215871081,-0.0805400163,-0.152342424,0.59765625,-0.201181784,0.122111194,0.260720909,0.239743099,-0.548772335,0.0918117687,0.314497501,0.0475719906,0.357400656,-0.643136144,0.119872026,-0.221215248,0.107879706,-0.36123547,0.368105948,-0.462128431,0.168457896,-0.434674203,0.409304887,-0.298763961,0.046661593,0.737362146,-0.571414292,-0.747656226,-0.164095908,-0.527744412,-0.187040538,0.0898418501},{0.31250644,-0.02671571,-0.03977573,-0.01664722,0.04939767,-0.6056593,1.1640625,0.05192289,-0.03108369,0.1248453,-0.08132354,0.99609375,0.0432279,0.225,0.6040039,0.19185625,-0.3671744,-0.0328958,-0.84375,-0.23728554,-0.0381853,-0.16162907,0.19724546,0.31236935,-0.37197524,-0.17821497,0.09204808,-0.25383112,0.12947418,-0.6728051,-0.33975852,-0.20463368,-0.34381604,-0.19189453,0.28119105,-0.08230268,0.09058717,0.34275204,0.64538574,-0.22760297,0.5622275,0.12843353,-0.27639222,-0.5026562,0.2712694,-0.6683175,-0.8027344,0.01243289,-0.15179443,-0.48909885,-0.3954587,0.02581694,-0.5273973,0.48304966,-0.07034396,0.42184162,-0.30852467,-0.18312772,-0.17686358,0.6553819,-0.42065105,0.26270023,0.0338259,0.21624517,-0.13378906,0.04038349,-0.7097252,-0.2054527,-0.46750516,0.09546726,0.01636393,0.1279478,0.12553668,0.16837415,-0.75,0.35748488,-0.11938212,-0.5058418,0.2870685,0.30282938,0.27257645,-0.25291008,-0.37498972,-0.24594678,-0.13236903,-0.11642886,-0.63845485,0.16301458,0.3337851,0.08543818,-0.09712996,0.12080526,-0.26945794,-0.1914494,-0.17130007,-0.33784375,-0.312532,0.05798738,0.12488458,-0.12844141,-0.00501186,-0.4157827,-0.09490631,-0.58416194,0.04333105,-0.60314,0.15373132,0.4588816,-0.2323295,0.5486328,-1.046875,-0.23528877,-0.38657135,-0.06958008,-0.07539476,0.73372394,0.257887,-0.17236988,-0.10546807,0.07302018,-0.7848011,0.18898268,-0.5680542,0.09737837,0.01971818,-0.04126189,0.18646783,0.12695847,0.28596312,0.2007643,-0.13766716,0.29480255,-0.24216555,0.6102865,-0.10426918,0.36722225,0.48577008,-0.07057784,-0.7440104,0.3976252,0.04914315,-0.46198326,-0.2426312,-0.00276119,0.38763136,0.07492747,0.41002458,0.5041143,0.20951666,-0.8141276,0.1474406,0.10379124,-0.26377657,-0.24262658,0.16355866,-0.5307949,-0.50591624,-0.3388954,0.63427734,0.1030072,0.17772312,0.1034563,-0.09893612,0.15571402,0.32215315,-0.7705078,0.01999852,0.285219,0.921875,0.07374641,0.37223613,0.32987508,-0.11767578,0.01549419,-0.43173876,-0.6994141,-0.05642958,0.17327367,0.1248798,0.58575994,-0.5661345,-0.20310546,0.44331548,-0.11373514,-0.4010536,0.775,-0.10931527,-0.3301738,-0.00353179,-0.05101366,0.540332,-0.5387931,0.13176514,-0.0040995,0.3613833,0.07543094,0.09911692,-0.33990344,0.30083048,0.01054342,0.5618107,0.26859185,0.1017274,-0.9375,-0.70654297,-0.4032775,-0.0374936,-0.28913745,0.23675504,0.06126432,-0.44136718,-0.31156734,0.08245418,0.07836998,0.03662559,-0.10622083,-0.11377387,-0.28413063,0.00166887,0.19490582,0.27442658,-0.19435826,0.17676017,-0.20172018,0.0691449,0.13819058,0.00188256,-0.5983297,0.23194902,0.6276042,-0.21476495,-0.09321475,0.5806108,-0.37186152,-0.34490252,-0.0763851,0.4364082,-0.9472656,0.5074508,-0.05602543,0.36331767,-0.10374245,-0.28029037,-0.0452812,-0.12510815,0.10378033,-0.27926144,0.13238482,-0.27163678,0.7328125,0.16307878,-0.17814633,0.02641901,0.27437788,-0.078406,-0.04648789,0.41234612,-0.6276786,0.11621094,0.6268229,0.20022202,0.37190834,-0.4307007,0.21246292,-0.04144788,0.31149212,-0.9589844,-0.25052872,0.0547895,-0.32212937,-0.21047758,0.7153125,0.38100734,0.5842507,0.7609375,-0.0886376,-0.31249106,0.24612392,-0.06467436,0.39255446,0.31652918,0.12983808,0.04765085,0.14746565,-0.49556363,-0.4852141,0.08324954,-0.19828205,-0.12179773,0.22553767,-0.5006768,0.49986246,0.45070684,0.1762336,0.79129463,-0.92317706,-0.4196072,0.47073364,0.00134401,0.14794485},{0.250166357,-0.544994235,-0.529224515,0.0861708745,0.9375,0.98046875,0.359544009,0.28505674,1.125,0.132774115,-0.294959545,-0.0623513199,-0.252980798,0.0651769936,-0.137707949,-0.212494537,-0.273518652,0.230892897,0.143554688,0.138668433,0.45373854,-0.0129489275,-0.122812539,0.283203125,0.641369045,-0.552906692,0.235002249,0.242204055,0.0592430159,-0.241660491,-0.450361133,-0.0766067877,-0.0279758945,-0.101815112,0.733309686,0.176955357,0.257843137,-0.177657232,0.0568969995,0.785937488,-0.391727567,-0.131305456,-0.81640625,-0.0156173296,0.16162543,-0.242737591,-0.104553223,0.597366869,-0.219191357,-0.166505918,0.154814288,-0.573608398,0.132250085,0.315369904,0.0230209474,0.569602251,0.0131290276,-0.349554658,-0.393594831,0.226295501,0.16310364,0.24026373,-0.020067811,0.350534528,0.342832357,-0.124173336,0.0439185314,-0.32620874,-0.184134528,0.180660948,0.388489276,-0.400295347,-0.0943814367,0.236309499,0.108527154,-0.351532608,0.142085209,-0.111802518,0.00172251265,0.426410437,-0.472485363,-0.0197752491,-0.464780748,-0.183559626,0.0342056118,-0.151235223,0.031313803,0.196827129,-0.388383359,0.137703732,0.386163116,-0.556803405,0.0786209628,0.337954491,-0.670372605,0.112018593,-0.0134289498,0.251360327,0.265652984,-0.601025403,0.167898208,-0.191957816,0.11446096,0.502424598,-0.24112016,-0.269479215,-0.00876239967,0.353273451,0.068362616,-0.000913794327,0.583767354,-0.25684765,-0.233364075,1.0078125,-0.0876540169,0.024557434,-0.363242179,0.495990962,-0.557785571,0.387914777,-0.45693022,-0.10151244,-0.059467528,0.26951009,0.328125,-0.190436766,-0.485473633,-0.0024282306,0.255966663,0.331847131,-0.284159333,-0.41479978,-0.55078125,-0.356142253,0.229898721,0.0138020413,0.320062578,-0.115248144,-0.260692865,0.774356604,0.302645117,-0.561631918,-0.16949746,-0.136849046,0.00607474381,0.171382308,-0.131856352,0.629447103,-1.0625,-0.215315416,0.131849408,0.0486816391,-0.389593273,0.0197614189,-0.240222886,0.0512382239,-0.10477455,-0.252829909,0.319104373,-0.0119096534,0.00348702888,-0.275305241,0.406223595,0.599888384,-0.288891762,0.229463145,-0.0874546841,0.137212798,0.544989228,-0.451547474,-0.148994163,0.0178905707,0.864583313,-0.359204501,0.0349656492,-0.463637799,0.426657528,-0.0227101073,0.233900979,0.477407098,0.0236033052,0.0278084781,0.420874029,0.558159709,-0.189432785,0.0678589493,0.218722016,-0.561810672,-0.160643622,0.550371706,-0.050795991,-0.0456566289,-0.321239829,0.470308125,-0.219747558,0.432554543,0.33888191,-0.0344223827,-0.395194143,-0.336782247,-0.145996094,-0.158249035,0.0685866699,0.0371367,-0.115719296,-0.271469086,-0.268528044,0.0348917879,-0.343736589,0.112084217,-0.0688988864,-0.202092245,0.394264281,-0.303710938,0.177802503,0.144577652,0.0414971523,-0.30084452,-0.306613654,0.244123444,-0.343848139,-0.0500723124,0.0808574632,0.124845989,0.518807888,-0.146026716,0.525350749,-0.186999246,0.292119175,-0.324038953,-0.113794856,-0.306494653,-0.1252895,0.161640674,0.00276732421,-0.0937471315,0.711328149,-0.132434383,-0.486083984,0.43026042,0.382776439,0.169113249,0.561671376,0.193259969,0.522879481,0.0618240461,0.105686389,-0.0641822144,-0.0927241743,-0.0578769483,0.275374174,0.0937805176,-0.259789526,-0.193918079,0.243231416,-0.689603388,0.116624519,0.431250006,-0.437244356,0.295002013,0.124160208,-0.0785814598,-0.0686796084,-0.25585562,-0.131397992,-0.295797408,-0.113757156,-0.501320601,-0.341821283,0.26755023,0.242385343,-0.423598349,-0.112792969,-0.00425606221,-0.712890625,-0.362333417,-0.209430262,0.101301506,-0.0813619569,0.171867818,-0.128459916,0.114418209,0.207451135,0.0533433072,0.754464269,-0.509936929,-0.02997398,0.130853966,0.073266685,0.121111758,0.303574592,0.396575212,0.305338532,0.40333581,-0.438796312,0.487140089,-0.0692609623,-0.00951163657,0.206062421,0.19866915},{-0.119655035,-0.165972218,0.000474217086,0.0954350159,-0.137724236,-0.146987811,-0.236321986,0.141560957,-0.13919735,-0.0325249396,0.243632212,-0.529017866,-0.124807209,0.0849594995,-0.501101792,0.273448586,0.566666663,0.0243652351,-0.103726707,0.036746487,-0.255983889,-0.265663385,-0.480224609,0.255814373,0.0222053025,-0.108128443,0.00602699677,-0.341706723,-0.0233040117,-0.30661729,0.376708984,0.102533937,-0.0661577955,0.756510437,-0.640910804,-0.256868362,0.0288547277,0.0827428177,0.203633964,-0.326291889,0.500866413,-0.744255543,0.574414074,0.655949533,0.0543005466,0.136187255,-0.201689228,0.169436201,0.158649102,0.00730765937,0.0351069868,0.0956905112,-0.266697407,-0.265612543,-0.0339335054,-0.33792001,-0.024886312,-0.30178979,0.0585892536,0.481870979,0.117992975,-0.227607518,-0.144506916,-0.703529119,0.0499426462,0.184936896,-0.103246495,0.173303872,-0.19969368,0.338187844,-0.0739833117,-0.0778829902,0.170440078,0.28511101,-0.409973145,0.27625978,-0.226671875,0.295003265,0.065672189,-0.260749578,-0.774999976,-0.297788262,0.184030831,-0.135730848,-0.110562362,0.39453125,0.429419935,-0.236134201,0.208942249,0.00262941676,-0.206468105,0.418925375,0.00769540714,0.426664263,-0.155235246,-0.132337689,0.342805237,-0.521686435,-0.0995606482,0.187904179,0.350621819,-0.367152423,0.256966978,0.287133694,-0.328178942,-0.1313155,-0.485477954,0.231412694,0.148949876,-0.447206885,0.102552362,0.146410793,0.310420096,0.144964591,0.377074748,-0.0544346794,-0.511532724,0.414843738,0.191422239,0.00613882998,-0.0664122105,0.235938564,-0.146466091,-0.138130173,-0.105464555,-0.0658669323,-0.0949338749,0.367145956,0.0788700506,-0.146952823,0.157701179,-0.268565655,-0.184072033,-0.0752111003,-0.0133078108,-0.00624292064,-0.109931715,0.0282813367,-0.0590303913,0.0847100168,-0.118685886,-0.281235069,0.0216959249,-0.0923252031,-0.283055544,0.58181721,-0.318167269,0.203579515,0.00503988052,-1.2734375,0.672169805,-0.233430281,-0.142094344,-0.73046875,-0.140585288,-0.165974811,0.19772768,-0.051436305,-0.599639416,0.278467298,-0.417692751,0.306658208,-0.0681524053,-0.0603115819,-0.0749488324,-0.243675753,-0.0467328988,0.696428597,-0.498254657,0.20752044,0.164017022,-0.0275027249,0.657470703,0.228041068,0.545428216,-0.0856829658,-0.156745031,-0.482696354,-0.581849575,-0.124367416,-0.109326579,0.593359351,-0.0268857591,-1.1796875,-0.0207160134,-0.13229619,-0.264708817,-0.0262157992,-0.402363271,0.0800389126,-0.550028265,-0.138148412,-0.301731199,-0.0233672727,-0.376800358,0.411345094,0.188482851,0.329206616,-0.0801114142,0.255859375,0.441139162,0.282159507,-0.359452575,0.762428999,-0.128913671,0.0688503161,0.113297507,0.381335348,-0.210892975,-0.0712972209,0.171965465,0.0722276568,-0.119234227,0.105695397,0.0465594046,-0.0196063705,-0.214886382,-0.139599785,0.209015489,-0.258809537,0.210903287,0.0380652696,0.667343736,-0.297819704,0.124850057,-0.104942858,0.220622152,-0.0102677802,0.14605324,-0.0674054474,-0.0135777621,0.0251109973,0.422675073,0.221286505,-0.238229275,0.142040744,0.210503474,0.00303375628,0.326163352,0.296907157,0.0465097465,0.106710643,-0.0344546251,0.455124617,-0.729352653,-0.0571261197,0.222006485,-0.189825147,0.558398426,-0.377785146,-0.223630384,-0.261776358,-0.174328417,0.171887323,-0.487275094,-0.140065819,0.0705218762,-0.185020387,0.144533321,0.0517570898,-0.0443354622,0.479957223,-0.208972856,0.23147729,0.300716579,-0.0317002162,-0.0368509069,0.0332202837,0.469109774,-0.0125239287,-0.12989524,-0.132282153,-0.130793303,-0.520958543,0.434396207,0.120377235,0.453086704,0.474900872,-0.0488708615,-0.014786493,0.11498452,-0.328267217,0.0098229507,-0.373758078,-0.0792927891,0.269329578,-0.97265625,0.244111389,0.0944724232,0.70717591,-0.301657736,-0.20072031,-0.106439643,0.0590756647,0.0308154225,0.93359375,0.267538756,-0.310564369,-0.096951969,0.0280736946},{0.24022266,-0.15080671,0.27923477,-0.06315915,0.35609376,0.0134386,-0.14791079,0.36301234,0.03956195,0.2338496,-0.50007415,-0.38468724,-0.3396662,0.17087992,-0.5233141,0.18309067,-0.10790248,0.35253587,-0.41764322,-0.04430666,0.20653978,0.97265625,0.2094265,-0.08034099,-0.05031928,-0.44254792,-0.6373291,-0.13762744,0.37758443,0.02865696,0.00517195,-0.48072523,0.47081015,-0.12460784,0.21586417,-0.09183528,0.24558938,-0.6708097,-0.19578081,0.58977866,0.15770282,-0.28903994,0.11057514,0.13332538,0.01945858,0.04137343,-0.06003933,-0.36822748,0.07766674,0.15728249,-0.90494794,-0.7899816,0.22159773,0.08370604,0.52685547,-0.46552083,-0.08034297,0.03128668,-0.5118634,-0.10491397,-0.01772679,0.02654336,-0.08350578,-0.12281152,0.05909808,0.11194266,0.40393066,-0.2998572,-0.0493128,-0.45543325,-0.15732576,0.23192874,0.00767507,-0.07422207,-0.31340536,0.24461013,-0.60253906,-0.12794368,-0.09324973,0.65940505,-0.39547926,-0.5269886,-0.2752643,-0.11644492,0.24841309,0.00259844,-0.04111759,-0.03098905,-0.02024417,0.18258128,-0.21533437,-0.02226842,0.09102174,0.22646104,0.6775568,0.00483687,-0.04342608,0.01169458,0.55534583,-0.02143393,-0.5894531,-0.45672965,0.22701547,-0.2987373,-0.1049467,0.2156889,0.01698596,0.5175983,-0.11020295,-0.17336781,-0.2496929,0.45071232,-0.01366251,-0.11840381,-0.05100505,0.11746366,-0.11129313,-0.5961119,0.5683594,-0.4228803,0.00569108,-0.07468031,-0.64427924,0.37968194,-0.02891864,-0.48287398,-0.07931589,0.0487163,-0.00342763,0.06161901,-0.25058493,-0.07914001,-0.27436626,0.17722094,-0.36139262,0.04364666,0.27840373,-0.07984008,-0.42282444,0.16265488,-0.16158801,0.25782147,-0.13718912,0.18207625,-0.0931889,0.9973958,-0.48614413,0.1313456,0.29974428,0.13372213,-0.2473195,-0.69745463,-0.33203667,0.3358768,-0.18107675,0.15674949,0.44174594,0.08488315,-0.01874544,-0.08372061,-0.190921,-0.514027,0.01582384,0.18894017,-0.11129493,0.24627395,0.18940935,0.9609375,-0.00932671,0.02757659,-0.4022299,0.12478957,0.02048503,0.46852586,0.07713903,0.39517337,-0.57875,-0.7569305,-0.45106533,-0.36914062,0.6499399,0.06691453,-0.14010566,0.08789578,-0.25294083,-0.59193313,-0.0705494,0.07300314,0.36812612,-0.15333113,0.1440496,-0.4286288,0.19582152,0.05713217,0.21583787,0.35737062,0.08883952,0.14889002,-0.04385796,-0.20263255,0.35147786,-0.12037601,0.15526289,-0.01169565,-0.34852892,0.2045279,0.35556597,-0.38692966,-0.7718099,-0.27336052,-1.1015625,-0.00978088,0.5486583,0.39179158,0.54577637,0.02629705,0.05628271,0.07004418,0.06366254,0.3555968,-0.1850065,0.1909361,0.01498474,-0.12619835,-0.11126171,-0.04379895,-0.1591017,0.16064274,-0.0275755,0.3958252,-0.005193,-0.05858253,0.45840096,0.79785156,-0.2966821,-0.04158416,-0.42974985,-0.46116185,0.42970818,-0.40105167,0.2401554,0.35623553,0.29985023,0.21922322,-0.540625,-0.3777305,0.56473213,-0.23772757,0.06713449,-0.34962922,0.38873866,-0.33577088,0.4861017,-0.3008387,0.25685287,0.14891489,-0.09352447,0.25002682,0.24658972,-0.0594427,0.5957705,-0.459198,0.05525345,0.32707104,-0.99609375,0.01162402,0.27533066,-0.35067338,-0.4533854,-0.415045,-0.1797055,0.8967634,-0.42102808,0.82910156,0.13914575,-0.43051487,-0.23292425,0.18206087,0.29496095,0.0639786,-0.1792502,-0.2987914,0.6990327,-0.625558,-0.09911355,-0.1718846,0.29985434,1.1015625,-0.47124743,0.07445956,-0.3643185,0.34279963,0.18354526,0.23626378,0.2930138,0.28609034,-0.35634428,-0.18117295,-0.17427975,-0.41087705},{-0.13034746,0.36122847,-0.08838362,-0.2569315,-0.1552341,-0.19968703,-0.10008129,-0.07003821,-0.08640856,-0.28119993,0.05334937,0.36222193,0.12132313,0.05993821,0.05909192,-0.12743516,0.31839567,0.3399051,0.26179412,-0.38276488,0.0510391,-0.30063865,0.06078055,-0.47065306,0.38278627,0.16057533,-0.99609375,-0.2722886,-0.03387178,-0.39156827,0.30651596,-0.19286263,-0.12157791,0.10111139,-0.32724145,0.157788,0.19333903,-0.32039028,-0.50115967,0.22162122,0.14308019,-0.5874566,-0.11983331,-0.10401715,-0.5711806,-0.41993544,0.24178414,-0.11548134,0.11007445,0.2041119,-0.24562252,0.45284122,-0.45339063,0.33607313,0.14991626,0.09421038,-0.9609375,-0.244157,-0.04441186,-0.2860283,0.00111396,-0.07836099,0.00594439,-0.0842345,0.03211833,-0.1508944,0.005467,-0.13718246,0.17424531,-0.09386192,-0.5956358,-0.16654055,-0.29770452,-0.25290573,-0.06809595,-0.1953146,-0.6832386,-0.60910374,0.7090993,0.13229175,0.23239167,0.49969694,0.29763857,-0.28812748,-0.42080358,0.19477262,-0.1376782,0.28219718,0.37304688,0.11619769,0.22503541,0.28811097,0.4863809,-0.0353583,0.09813985,-0.06979995,-0.6816406,0.8671875,0.18797848,-0.20261222,0.316379,-0.01055302,0.16263936,-0.3594122,-0.00350057,0.35231954,0.1337557,-0.4489258,-0.45661458,0.3291261,0.17674527,0.2368164,-0.30672035,-0.16405351,0.53734374,-0.24382758,0.14013931,0.199065,0.25976017,0.03807748,0.1239543,0.11594717,-1.0338541,0.22891882,-0.00921674,-0.08836824,-0.5861328,0.06665234,0.00291959,-0.57128906,-0.32444957,0.01756549,-0.13911307,0.12742336,-0.87890625,0.49674064,0.3867293,-0.42588976,-0.15186855,-0.7363281,-0.37285477,-0.09222124,-0.00512721,0.48373112,0.22116992,-0.10034008,-0.08568977,0.46261913,-0.17774127,-0.3535887,-0.1376427,-0.04368975,-0.16549407,1.1015625,-0.28421646,-0.87165177,-0.36531463,0.1792416,0.5592238,-0.15285785,-0.00611891,-0.04299021,0.10422786,-0.03219198,0.05165767,0.08348782,0.06737109,0.36439097,-0.27825835,-0.05905253,0.18502349,0.31247517,-0.80598956,0.17091562,0.22453593,-0.5746745,0.68069196,-0.3359316,-0.40535438,-0.5347098,0.25104105,0.05356155,-0.06542695,0.19002496,0.39447117,-0.4587606,-0.18796824,-0.0050708,0.2811018,-0.00591186,-0.18895434,-0.2607777,0.42939815,0.15482892,0.00309044,-0.46083194,-0.06229489,-0.08256342,-0.88151044,0.26932135,0.48735434,-0.875,-0.63639325,-0.84765625,-0.42877716,0.377569,0.50926775,-0.70288086,-0.25872362,0.8092448,-0.5062133,0.52508545,-0.03465785,-0.21415952,-0.426637,1.015625,0.42998976,-0.201592,-0.3378772,-0.24361978,0.19096069,-0.66064453,-0.78255206,-0.22347817,0.19880785,-0.17719984,0.09056526,-0.6501116,-0.07569802,-0.12941028,0.3461072,-0.15233488,-0.31067216,-0.08743732,0.41299963,0.11082337,-0.08983525,-0.2537563,0.0573989,0.22699466,-0.50439453,0.46375,0.16156106,0.07962429,0.45847356,0.36862493,-0.39357504,0.43631586,-0.46519595,0.0938096,0.13811384,-0.06619804,-0.27826968,-0.2097808,-0.04658904,-0.7363873,0.15918136,-0.07470444,-0.6785156,-0.00788395,0.1898666,-0.10763142,-0.3486423,-0.21628855,0.14305994,0.14504415,0.12622598,-0.8515625,-0.03185149,-0.09257331,-0.21778195,-0.11400082,-0.06957181,-0.05640207,0.31441826,0.32530257,-0.42182642,-0.27731693,0.34478554,-0.2304559,-0.576527,-0.21389966,-0.09516723,0.06242863,0.3594899,0.45729932,-0.34570312,0.3125115,0.42891246,-0.12101605,-0.74316406,0.27726945,0.01973427,-0.3721293,0.22760269,-0.0015467,-0.1513434,-0.42402676,-0.05786882,-0.06750346},{-0.0739264,-0.563337,-0.14510502,0.06185802,-0.395557,-0.15771824,0.24564986,0.307558,0.17524813,0.22313617,0.18689412,0.17475586,0.5775082,-0.52984375,-0.32237387,-0.3669085,-0.06241585,-0.24366231,-0.21827333,-0.36708134,0.01163425,0.04831811,0.37409753,-0.29782242,-0.042234,-0.26179588,-0.44196266,-0.19129331,0.017767,-0.5544837,-0.09331449,0.1513718,-0.87890625,0.21875842,0.29509088,-0.27825683,0.5981549,0.0476987,0.18308653,0.19681813,0.32916716,0.23037475,0.1679784,0.05688366,0.0350243,0.5670956,-0.03200588,0.23235954,0.12138787,-0.21871677,0.16894531,-0.17133817,-0.20172478,-0.13626842,0.14060007,0.01554291,-0.06713351,-0.50109535,-0.34173065,0.27737978,0.06494969,0.1059724,0.07806911,-0.18014444,-0.26942337,0.09883045,0.10034662,-0.85546875,0.8691406,0.08664296,0.28608435,-0.6302083,0.3368311,0.46045557,-0.6208984,0.1830816,0.02333227,-0.2645913,0.74140626,0.02228326,-0.18599686,0.25677314,0.42223668,0.05282684,0.09349584,0.09906883,0.14253353,0.34472656,0.15277272,0.36439732,-0.35939687,-0.17675781,-0.3134429,-0.20852768,0.46125856,0.1294086,-0.18161945,0.00296899,-0.1903289,-0.07958529,0.77201706,0.12842949,-0.92578125,-0.10691432,-0.34263393,-0.05249465,0.14305165,-0.38671875,0.25200644,0.19918783,-0.35534462,-0.15626195,-0.15619093,-0.1328297,-0.27246556,-0.03451822,-0.13086236,0.08885518,0.00830925,-0.27737117,-0.37675583,-0.30365306,-0.36214194,-0.17824467,-0.07125703,-0.17044209,-0.05907736,-0.1489533,0.5410657,-0.22905558,-0.7038143,-0.14741777,-0.21920332,0.18757123,-0.28121844,0.6542245,0.4355311,-0.25589997,0.07663418,0.50784177,0.1948142,-1.0,-0.59628904,0.15277246,0.04808759,-0.5253906,-0.6673177,0.16211817,-0.5474274,-0.14158867,-0.38112572,0.32435346,0.02771524,-0.15479988,-0.01790156,0.21004742,0.04328988,-0.23972377,0.48172742,0.15959787,0.46476236,0.15131648,-0.08834329,-0.88359374,-0.17191808,-0.03260031,-0.03578231,-0.11106321,-0.1357117,0.38680062,-0.09493072,-0.3184933,0.12373807,-0.18167923,-0.2744288,0.35507813,0.18890303,0.37015086,0.39041305,-0.40626213,0.222157,-0.16056661,-0.03511884,0.00828638,-0.34476238,0.14453293,0.13038096,0.3076731,-0.02217648,-0.45236072,-0.35933498,0.38953167,-0.3340107,0.68012154,-0.30457497,-0.18792823,-0.10644693,0.2734045,0.12417065,0.06396735,-0.10228713,0.05687458,-0.13471387,0.055407,-0.04048441,-0.26073506,0.08345483,0.06495369,-0.42675304,-0.22653648,0.23330078,0.12174664,-0.34169212,0.15766871,-0.27242926,0.10083386,-0.7910156,-0.04995899,-0.22746885,0.22839394,0.13140209,-0.20999935,-0.07296345,-0.08199666,-0.40016174,-0.4626258,-0.30071288,0.01577491,-0.03918311,0.37386718,-0.26162896,-0.47092763,-0.2314521,0.09032991,-0.40728602,0.43421304,-0.14204259,-0.53098667,0.26271063,0.34765625,-0.34475368,0.00832704,-0.0947506,0.3933786,-0.01671206,-0.2055664,0.5138672,0.1698719,0.19089073,-0.8359375,-0.36217448,-0.09491839,0.06303824,-0.33576643,0.2949885,0.09280957,0.28029823,-0.3653402,0.03829923,0.07811833,0.29206544,-0.73046875,-0.377035,0.03562448,-0.17224988,-0.6660156,0.4831848,-0.32132185,0.15579522,0.2294034,0.08214318,0.12695064,-0.04711155,0.21722196,-0.08551986,0.00304757,-0.14940986,-0.43770206,0.01308367,-0.37438193,-0.16701238,-0.03780278,-0.02210036,-0.06202005,0.12467049,-0.01545244,-0.0560098,-0.14503089,-0.10082236,0.39257812,-0.15966943,-0.39743674,-0.5096329,-0.30426025,0.25160995,-0.19533996,0.38785216,-0.6816406,0.21428119,0.09767272},{0.06262752,0.3291247,-0.03135113,0.05332119,0.14737874,-0.49649197,0.00946957,-0.14598015,0.04896527,0.3096036,-0.16013826,-0.00436166,0.07100741,0.07590482,-0.18014397,-0.27432528,-0.2537692,0.3144193,-0.53117627,0.0281096,-0.76171875,-0.28703213,0.1816308,0.3952339,0.20642121,0.24870895,-0.07932758,-0.16298828,0.42889875,0.03786425,-0.26273483,0.00937909,0.38770115,0.17127241,-0.22319971,0.5091797,0.22211854,-0.73876953,0.36728016,-0.12054794,-0.09229833,-0.9583333,0.47455856,-0.31429562,-0.30470616,0.21769206,-0.21146633,-0.07790609,-0.10547987,-0.45672607,-0.4180702,0.06565335,-0.42262942,0.02701905,-0.01486481,-0.53049046,0.7441406,0.13031715,0.15330487,0.53758085,-0.1528466,-0.1406454,-0.06080221,0.19912134,-0.46208334,-0.02657993,0.18308145,0.05967686,-0.24614143,0.52691406,0.6979852,0.14501311,0.68046874,-0.00526587,0.11907853,0.03080814,0.29984906,0.76054686,-0.59025496,-0.09036554,-0.04898322,0.24036743,0.00369568,0.42664063,0.55084425,0.1474964,0.08789391,-0.05709598,0.11603121,0.32236248,-0.13964723,0.09318314,-0.06327347,-0.05518318,1.0703125,-0.42974815,0.38747233,-0.44637784,-0.640067,0.09496691,-0.3974263,-0.98828125,-0.01501679,-0.20941962,0.695822,0.7626953,0.5366498,-0.00306556,-0.24967824,-0.49160737,0.32042015,-0.13624696,0.15815261,-0.10645884,-0.03809438,-0.15184012,-0.12207275,-0.09617755,0.04183655,-0.00999833,0.02561889,0.5301535,0.02370067,-0.01824978,0.08207491,0.27353013,-0.12106501,0.42084265,-0.11397225,0.1548089,-0.11252777,0.11181769,-0.29005057,-0.13821273,0.5656738,0.47167245,-0.27823824,0.17721398,-0.04806378,-0.61653644,0.23724306,-0.02515327,-0.05125976,0.20211753,0.15726635,0.24514017,-0.72377235,0.27929336,0.12985298,0.093019,-0.05795838,-0.4764839,-0.44927084,-0.03809925,-0.21342394,0.5178285,-0.13081588,-0.30277446,-0.64474237,0.04750015,0.09376616,0.0170192,0.24410492,-0.15182303,0.73480904,-0.33000442,-0.06686604,0.1957618,-0.03696948,0.17628574,0.08617677,-0.21195976,0.495471,0.05502473,0.08668182,0.14694704,0.09866913,-0.41995573,0.03320312,-0.22947328,-0.06962593,-0.13665688,0.04434841,-0.17622158,-0.11516558,-0.31257173,-0.48413086,-0.45984256,-0.35276616,0.06642336,0.05894151,-0.11568924,0.03043151,0.23389189,-0.53824013,0.39665624,-0.06935135,-0.7612847,-0.7328125,-0.1781711,0.3065528,-0.52700406,0.6770833,-0.11454365,0.2930148,0.03183111,-0.20552294,0.1943849,0.02933955,-0.03439863,-0.13180232,-0.21241288,-0.12844805,0.26754317,-0.17828564,-0.56070524,-0.09129049,0.26739323,-0.52521306,-0.03094912,0.6875,-0.28408688,0.0238721,0.18794666,0.24924015,-0.15380181,-0.37391183,0.5199908,0.3298396,0.24406902,-0.20257047,0.18852796,0.734375,-0.10690507,0.23189057,0.07253325,-0.05954374,-0.16406481,0.59875804,-0.00993852,0.4453125,0.51915014,0.01073845,-0.02050767,-0.22931841,0.1587508,0.01766824,0.5898783,0.3633002,-0.1269941,-0.07028747,0.05637207,-0.12538499,-0.1093171,-0.20053712,-0.84134614,-0.01352684,-0.31058443,-0.21826999,0.4949145,0.75217015,0.10592844,0.19283606,-0.4138378,-0.09521659,0.06495126,0.5292535,-0.28510356,-0.09447457,0.15328392,-0.1162158,-0.03528618,-0.5137695,0.06617698,-0.22738765,-0.22065328,-0.22222959,-0.06663298,0.42007047,-0.2171596,-0.1091417,0.07812768,0.01852186,0.45870537,0.2500715,-0.23144859,0.16070789,-0.26550683,-0.292961,-0.14695162,-0.02450182,-0.58091515,0.09348418,0.47821516,0.90234375,0.04204936,-0.33385888,-0.03166318,-0.26956755,-0.03076927},{-0.02454157,-0.05536563,0.67127407,-0.35983703,-0.22359963,-0.00398555,0.17861739,-0.17676833,-0.1194145,0.02716028,-0.36231303,-0.16747773,-0.32231346,0.2455451,-0.06141805,0.32908347,-0.641183,0.89375,-0.12986587,-0.2265724,-0.02948654,-0.22068056,-0.24123009,0.37783253,0.05294622,0.40731812,0.57572114,-0.18005629,0.22026317,0.3170911,-0.24653335,-0.274374,0.33592758,0.00283466,0.09741341,-0.31063247,0.13914305,-0.14550138,0.2997354,-0.14453971,-0.11271554,0.31447348,-0.241939,-0.26166838,0.01137369,0.00398194,0.14162646,-0.05793849,0.13571183,0.26659507,0.02552339,0.6608073,0.35260916,-0.07914449,0.7063802,-0.28899243,-0.4049479,-0.3330636,-0.05463813,-0.42573547,-0.11860497,-0.20015696,0.25290328,0.2909,0.21983975,0.5606318,-0.4139091,-0.14896154,0.47395048,0.16447896,-0.03642909,-0.09667355,0.13769351,-0.11009091,0.18126048,-1.0976562,0.11711951,-0.8064453,0.16255447,-0.36018735,0.10057329,0.88671875,0.04789401,-0.05967185,0.65755206,-0.48549804,0.32037133,0.6077999,0.4907959,0.05285386,-0.09009052,-0.10768921,0.22841164,0.23636495,0.06276647,-0.25877947,0.11892467,-0.61300874,-0.4706812,-0.02947295,-0.12792522,-0.06348393,0.07205389,0.40632233,-0.12508121,-0.78759766,0.01040089,0.07638722,0.20262453,0.13624913,0.06326973,0.0296971,-0.03708605,0.07079656,-0.5015067,-0.06810634,-0.01271783,0.01835799,0.5427355,-0.36826834,-0.05671554,0.06955976,-0.47562933,-0.22022529,-0.14205015,0.0277714,0.06495671,-0.16366999,-0.19278441,0.00618839,-0.40042597,-0.463059,-0.39040798,-0.21722637,-0.16946256,-0.49108073,-0.0203014,0.67277646,-0.03145721,0.18210536,-0.09598081,0.02512353,0.31046662,0.19081832,-0.06831873,0.47740144,0.02453563,-0.6145833,-0.16452721,0.02340112,1.1171875,-0.7477921,-0.66078126,-0.20506302,-0.32202682,-0.20802486,-0.15716082,-0.545166,-0.42290768,0.24057192,0.16548069,0.08715978,0.18802011,0.3359117,0.20701802,0.01491211,-0.75651044,-0.09914716,0.08911771,0.09691264,0.2880896,0.1909584,-0.625,-0.13038303,-0.14599372,0.45459905,-0.05048776,-1.0351562,-0.0394359,0.04489749,0.01339543,0.14303358,-0.26963153,0.17816,0.6306046,0.10572308,0.27143446,0.48727965,-0.5878057,-0.23050302,0.06904941,-0.4807215,-0.19569923,0.14696272,0.23149295,0.00186928,0.15667005,-0.46599787,0.11176539,-0.35435075,-0.43546268,0.04298333,-0.24839385,-0.25392434,0.5181021,-0.08716499,0.5435697,-0.3690511,-0.04786636,-0.10202792,-0.23586236,0.7832031,0.59197444,-0.15138237,0.07937439,-0.2499721,-0.31811887,-0.31616902,0.13382539,0.29272977,-0.05739109,0.17874704,0.26552054,-0.2509998,0.2714175,-0.05397104,0.02764818,0.19375758,-0.01930608,-0.07542016,-0.40822506,-0.22995733,-0.6081081,-0.05838482,0.08326324,0.20851964,-0.6247396,0.6155599,-0.00572136,0.25023332,-0.22699608,-0.46314988,0.875,-0.15281563,-0.0241829,0.77473956,-0.92578125,0.09377228,-0.26065865,-0.49574974,0.41917202,0.03020405,-0.07099108,-0.01848624,-0.09350278,-1.0625,-0.6996528,0.0179091,-0.20410822,-0.10526177,0.38284677,-0.9140625,0.2235819,0.43572626,0.0451589,0.8486328,-0.6612549,-0.33999324,0.5623047,-0.30270946,-0.01955131,0.15042195,-0.16157037,0.13181281,-0.33901262,0.3965574,-0.27537498,-0.5618206,0.27928856,0.10226154,-0.6360085,0.02045839,0.1318286,-0.26580256,0.15282515,-0.21829087,-0.2065486,-0.18851289,0.5661515,0.76021636,0.34003907,-0.00872125,-0.36430073,-0.01136451,-0.13480745,0.35447225,0.0544638,-0.12435018,0.07570747,-0.19526428},{-0.25578621,0.403355718,0.183155984,-0.672656238,-0.283097923,-0.403303385,0.78125,-0.9921875,-0.204096526,0.0744649321,-0.12743403,0.0308716707,0.348749995,-0.415096521,0.310644537,-0.290147573,0.0228786953,0.453088671,-0.639787972,-0.468355626,-0.0940039307,0.0971186832,-0.426398039,-0.216900527,-1.046875,0.0522009693,0.0347596034,0.0927679986,0.0497234613,-0.322157383,0.431192368,0.137657985,0.159714699,-0.00544162001,-0.296959728,0.0273303743,-0.20341444,-0.0560806505,-0.408824563,0.414884239,-0.451486886,-0.163558334,0.152381167,0.222208858,-0.240279794,0.340142459,-0.53911531,0.12103904,-0.26953125,0.0155249257,-0.0556434989,0.799804688,-0.237311825,0.13334237,-0.204488277,-0.112522684,0.0622895099,0.92578125,0.143035412,-0.133295909,0.350591153,0.123047642,-0.196809411,-0.523502052,-0.495334208,-0.112533994,-0.40015769,0.23487103,0.0788193494,-0.0434557907,0.246485174,0.0150762079,-0.162124246,-0.146950647,-0.280246794,0.135671541,0.248362154,0.526757836,-0.30547744,0.407485396,0.7890625,-0.0069661187,-0.109310016,-0.721093774,-0.0279709492,0.423729658,-0.0221797507,0.00433254801,-0.051132258,0.7734375,0.259604543,0.245479584,-0.422675341,0.288935125,0.60546875,0.239060238,-0.0825395361,-0.175750569,-0.502780735,0.0764357001,-0.168492198,-0.138125271,0.398299783,-0.404173076,0.774088562,0.0771252364,-0.0606503002,0.26761657,0.268492132,-0.416588694,-0.261695445,0.160591304,0.476657778,0.596253991,0.434667975,0.00694447802,-0.674879789,-0.00620442117,-0.157271028,0.626868188,-0.0306117684,0.100291021,-0.192388996,-0.284130871,0.174299389,-0.397442967,-0.818181813,-0.275356501,0.0502557531,0.936523438,-0.3037287,-0.134287223,0.0917801932,-0.157282263,-0.225589216,0.583354354,0.294885695,-0.77734375,-0.610206127,0.431583881,-0.00984075665,-0.365077555,0.00706484914,0.33888635,0.265621126,-0.225515962,-0.334953368,0.104729779,-0.0306629352,0.183075354,-0.109554164,0.48052299,0.576349437,0.636493385,0.250179887,-0.0895719454,0.215293556,-0.369140625,0.0868926793,0.0135395266,-0.0142941643,0.459193647,-0.217217505,-0.0986382291,-0.413327664,0.0346638598,0.250948399,-0.0315279663,-0.404402703,0.0563929789,0.107421875,0.111513518,0.0323147327,0.103041142,0.525799394,0.0628018975,-0.292722911,-0.266622037,-0.375763565,-0.0318485089,0.366015613,-0.281275421,0.19911024,0.401049793,0.250682473,0.219183788,0.251900822,0.0083286576,0.0646572411,0.254877031,-0.0334412679,0.335160464,-0.513696015,0.169919357,0.0107701952,0.276339442,0.0144799845,-0.412167668,0.0497259721,-0.112539329,0.840680778,-0.202855155,-0.271571547,0.109862454,0.138266504,-0.466818571,-0.235396549,0.0502891354,0.0158066843,-0.0132765956,0.218616173,0.276310951,-0.476234794,0.907226562,-0.134328946,-0.418732256,0.8984375,-0.0977056846,0.431794256,0.141120166,-0.129342213,0.297781795,0.845703125,0.0639506355,-0.273370147,-0.415157706,0.387737453,0.368110985,0.0296133533,0.045199845,-0.491505086,-0.296010941,0.299780875,-0.461844295,0.543298185,-0.227551699,0.19633244,-0.322216332,-0.325947732,-0.13235949,0.282192737,0.159182951,-0.025900919,0.0888851956,0.0121568358,-0.22700119,-0.11598812,-0.0323797129,0.0312278979,-0.199707031,0.342607468,0.167995274,-0.160632297,0.322219849,0.198712155,0.262715399,0.829687476,-0.242680162,-0.407316238,0.213828787,-0.135182604,-0.0488310494,-0.228439763,-0.0211240016,0.130334496,-0.0681040064,0.186032087,-0.0756723434,-0.200671732,0.0169984978,0.0244804583,-0.63671875,-0.326224655,0.879882812,-0.304645956,0.149424568,-0.0659098998,0.394512475,0.166490644,-0.028048696,0.188958436,-0.253896415,-0.372212738,-0.0500624217,-0.530808985,-0.450216532,0.0739688128,-0.0693172291,-0.160617039,-0.511318088,-0.249721453,0.24879162,0.289006293,-0.108381629,-0.248781413,-0.15134345,1.57535815e-05,0.37103796,0.17331031,0.22410135},{0.167002425,0.0417788252,-0.0956921428,0.351685137,-0.0182698574,0.119370759,0.0461578369,0.0245760493,0.302701265,0.0479433127,-0.63430059,-0.712646484,0.0599334948,-0.177279353,-0.459768027,-0.517361104,0.457745284,0.772977948,0.00418975903,0.295885742,0.670014858,-0.517602861,0.41217342,-0.0129426559,-0.476677388,0.374711484,-0.0255994704,-0.0732912868,-0.258785486,0.561279297,-0.0725384876,0.8046875,0.00719526596,0.146879241,-0.173826396,0.119128659,0.461055875,-0.6171875,0.116957776,0.0197088383,0.75390625,0.107697591,0.317497134,-0.193843007,-0.201116428,-0.0729975179,-0.611243188,0.246062785,0.197219118,-0.117672376,-0.108177178,-0.538332343,0.327988088,-0.180682227,0.0906058624,-0.0156089924,0.00155733898,-0.0619224757,-0.0796046406,0.399517477,-0.227980286,-0.125294045,0.0981182232,-0.338886797,-0.372087061,0.14202635,-0.619001091,-0.166378289,-0.104254678,0.565957963,0.737304688,0.101333052,0.419062495,-0.339851022,-0.209967375,0.47265625,0.105920285,0.132888064,-0.0717831105,-0.191859365,0.313410908,-0.217244878,-0.154288575,-0.0339012109,-0.401374876,-0.254685372,-0.215873659,0.0237961393,-0.531539381,0.164044559,0.2109375,-0.379882812,-0.196287185,0.0214482732,0.117906258,0.208486885,0.184095114,0.0340483189,0.156309053,-0.339848906,0.266687363,-0.282285213,0.129851833,0.267544687,0.527497947,-0.11768458,0.0538412519,-0.324934483,0.515517473,-0.354406863,-0.16984278,0.173397079,-0.502143681,0.200219676,0.455919981,0.370240808,-0.102025762,-0.531285524,-0.0550444424,-1.0390625,-0.257802337,-0.475802958,0.286300898,0.111299023,-0.259619862,-0.149846211,-0.994140625,-0.291116476,0.197188154,-0.177269667,0.366399944,0.163083196,0.255922198,-0.468222976,0.0658917874,0.0257218666,-0.123304404,-0.138154,0.407489896,0.0106022833,0.325142175,-0.136682197,-0.044271823,0.427559257,0.294947982,0.388533026,-0.10183581,0.0185931101,-0.256817907,0.217579648,-0.465382546,0.119840652,-1.16796875,0.0703304857,-0.443681329,-0.196781158,0.629278302,0.507504106,0.141126022,-0.207487509,-0.0237929244,0.798828125,-0.0437211543,0.293032795,0.609375,0.497127771,0.34084323,0.0672179237,0.0774015039,0.279329985,-0.0871393904,0.0476134904,-0.0410901681,0.374967188,0.126318857,-0.833147347,0.392747134,-0.15235649,0.0190781504,0.2483982,-0.661024332,0.349023432,-0.0979709476,0.203080207,-0.0153784556,-0.260810494,0.401432306,0.220705703,-0.137718022,-0.16297777,0.0192214791,-0.41034615,-0.0691107363,0.76171875,0.527447939,0.784539461,-0.165541217,0.000426677521,-0.0336835645,0.190432906,0.0881505162,-0.0227064043,0.131343395,-0.054971952,0.103483573,-0.197765693,-0.0937117413,-0.412040025,0.116036162,-0.26265341,-0.245117188,-0.651562512,0.173746005,-0.106529273,-0.195811421,0.0844144002,0.00367411878,-0.16598177,-0.36524418,0.00939247478,-0.361258358,-0.0316283442,-0.428502828,-0.188042134,0.18982473,0.665564895,-0.0547926202,3.5852383e-05,-0.410193443,-0.0858816952,-0.0558309481,-0.396501213,-0.261600196,0.0613052025,-0.96484375,-0.672926664,-0.367345214,-0.0231046174,-0.0673794374,-0.266551226,-0.12547262,-0.212928876,0.419061184,0.0224024784,0.394335926,-0.710546851,0.418845147,0.0691077709,0.250220507,0.0727872103,0.711718738,0.0674266815,-0.383116305,0.158678889,-0.242536739,-0.215791345,0.0587462634,0.198195428,0.337073505,-0.0625799149,0.234391168,-0.551630437,-0.148493662,-0.203077793,-0.110878833,0.539113879,-0.811298072,0.0803147182,0.140112266,0.384323418,0.372878492,0.431463063,0.0495688692,1.1328125,0.501335025,0.139199331,-0.890625,-0.138207152,-0.197218895,0.108896665,0.271435738,0.069306165,-0.527747869,0.0168218482,0.335944146,-0.147966102,0.641927063,-0.110759445,-0.69921875,-0.303322524,-0.0442875326,0.668870211,-0.121881932,-0.122114703,0.477236003,-0.132285014,0.231005713,-0.191438526,0.299811989,0.335752875},{-0.0158504918,0.0361040048,-0.652832031,-0.222802982,0.178047553,0.207947001,-0.0577951893,-0.605910957,0.167892158,0.210985303,0.348612875,-0.0179364607,-0.623811126,-0.71875,-0.257802278,0.710526288,0.142076507,0.412385643,-0.155245081,-0.325254142,0.162614927,0.145955339,0.827524066,0.00132376549,-0.114007451,0.0422058105,0.353945971,-0.0227140319,0.0652165413,0.417767704,-0.823350668,-0.126923636,0.42776835,-0.232382014,-0.0852095708,-0.333940238,0.159194157,0.214348555,0.315318525,0.12941812,0.0686254054,-0.0162411854,-0.227867618,-0.0533441529,-0.450289816,0.0961561352,-0.261706114,0.371075153,0.0205912162,0.170385942,-0.804276288,-0.688281238,-0.757324219,0.00707586156,0.0515830666,-0.375784576,0.497311592,-0.621259987,0.104217194,-0.0686030388,0.908203125,0.515313625,-1.109375,0.138651833,-0.412474602,-0.728236616,-0.380873233,0.542789161,-0.0727835894,0.712304711,0.641601562,0.799479187,-0.191423327,-0.610871017,0.0859994888,-0.185620353,0.190372944,0.105239034,-0.221138969,0.108610921,0.134271219,-0.0538569093,-0.0641848743,-0.0668785796,-0.0533717796,-0.0717549473,0.0954303294,-0.150411278,0.00365690654,0.198727503,-0.0727051646,-0.291992188,-0.0133022862,-0.0880700946,-0.330113798,-0.268548399,-0.121063665,0.101123944,0.627111495,-0.225585938,-0.445995152,-0.230948567,0.00673041586,-0.0946904495,0.320425302,0.197192386,0.1204018,0.171883658,0.0259036683,0.0729640573,0.189466804,0.200713918,0.353502333,-0.469198257,0.497620136,0.289015353,-0.713727653,-0.0663902313,0.419071317,0.275132656,0.0511357039,0.0365120471,-0.12892431,0.18948178,-0.0365531109,0.12153177,0.0840621367,0.605870843,0.274329662,-0.11306724,0.145596847,0.0647322237,-0.112075448,0.282259792,0.19533515,0.546921492,-0.152291432,0.109827429,0.085459061,0.151827931,0.601222813,0.0136388401,0.118901365,0.0876635611,0.533834994,0.293958068,0.144417539,0.259765625,0.350349188,-0.489919782,0.570166945,-0.255772322,0.221560106,0.0139156152,0.0970549732,-1.0390625,-0.0883361995,0.0757087171,0.238939002,0.259631187,-0.0749914125,-0.7421875,0.0587212667,0.465420812,-0.121780835,-0.0898608938,-0.344490141,-0.400537491,-0.149420947,0.185079485,0.310627431,-0.0837171599,-0.0956418291,-0.195801869,-0.295880139,0.263794959,0.306508273,0.142179355,-0.133712858,0.129413307,-0.450003415,0.0754652768,0.00373867247,-0.0685799047,-0.232889488,-0.546549499,0.552779794,-0.144506544,-0.0757102668,-0.736979187,-0.00403338717,0.231299683,0.0214376394,-0.0688154474,-0.00797198433,-0.323233992,0.221184075,0.121113561,0.0756857544,0.237046182,-0.0700637177,-0.579055071,-0.451714396,-0.202115148,0.353467703,-0.324069768,-0.224130705,-0.430688471,-0.158242226,0.126477569,-0.0538440719,0.0920089707,0.190015569,-0.0947499424,0.382721663,-0.0719394684,0.220665395,-0.184600666,1.015625,-0.194353998,-0.0998562872,-0.778645813,-0.134236917,0.0891263112,0.0928097814,-0.191378966,0.569969833,0.263616383,0.473108351,0.422614813,0.1997637,-0.565885425,0.341820002,0.359450698,0.0411445163,0.132824644,-0.0285043828,0.298818678,0.824609399,-0.0301352628,0.86328125,0.680989563,0.000590821495,-0.108628452,0.0930218473,0.195244715,0.262577266,0.451338977,0.0067094462,-0.0820099041,0.115750022,-0.0540850721,0.343826085,0.0405333117,0.391541153,0.380589992,-0.341707677,-0.0190252401,-0.260793597,0.153887689,0.0189033058,0.0504332483,-0.271573365,-0.684461832,-0.221515432,0.293092281,0.157219782,-0.522808135,-0.523109257,-0.228992805,0.201683551,0.192831904,-0.697115362,0.112032443,0.0339315049,-0.482367128,-0.363215715,0.283291638,0.258743644,-0.00436957041,0.0555410162,0.531376004,-0.106922649,0.124408059,-0.42459327,0.318020135,0.588026881,0.217776731,-0.417722225,0.162565917,-0.0544932634,-0.261673063,-0.163026154,-0.0604259707,0.345714539,-0.0916215628,-0.298731029,0.0546398126,0.058954034,0.158664599},{0.4829905,0.15380345,0.22071925,0.07350957,-0.2978435,0.00545645,0.22167687,-0.1421441,-0.10860069,0.09375302,0.08254994,-0.30658534,-0.06737013,0.3358378,0.41972932,0.6698134,0.09472656,0.10079306,0.17339435,-0.28409192,-0.2772632,0.06032046,-0.00886877,0.14351825,-0.34967205,-0.04332742,-0.26076826,0.89453125,-0.3086601,0.1269718,-0.52357066,0.06255149,-0.41326854,-0.08472557,-0.4169922,-0.5155771,0.34962234,-0.09911373,0.27140805,0.0715332,0.22604804,0.05845898,0.337828,0.25386214,-0.2506847,-0.20449153,0.0387144,0.42466226,0.2998709,-0.090068,-0.49023438,-0.40128118,-0.15376893,0.39636812,-0.5599724,0.15766595,-0.11884666,0.0869525,-0.01870701,-0.05176039,-0.24410728,-0.06760895,-0.36520797,-0.3525641,-0.5786577,0.25971556,-0.08813959,-0.06123962,0.02253356,0.42089844,-0.47763872,-0.13381773,-0.12994792,0.0586805,-0.15035178,-0.28415516,-0.01191672,0.0407701,0.19918725,-0.46956646,-0.4135022,-0.0639586,0.36721602,0.3546317,0.4773638,-0.37291557,0.07544512,-0.34296542,0.8183594,-0.2859894,-0.04689463,0.4546686,-0.48728502,-0.3268612,-0.48134068,-0.23688358,0.08666866,0.6822917,0.39720252,-0.16894029,-0.24425538,0.3878946,-0.24225485,-0.08523225,-0.03956093,0.2949438,0.19287798,0.04057577,-0.306498,-0.21627103,-0.22508508,-0.09593169,0.11260459,0.21142699,0.04625029,0.3113564,-0.1517735,-0.4188631,0.5135726,0.0447809,0.34191832,0.19981426,0.0359366,0.0606444,-0.12990062,-0.28221002,0.04487875,-0.03551952,-0.05296257,0.18360588,0.396357,-0.34097737,0.18166223,-0.6435033,-0.48273438,0.4051205,0.859375,0.05898822,0.06322196,0.6243939,0.05556079,0.28123793,-0.18016721,-0.1742555,0.11544232,0.6404018,0.24013712,0.09720895,0.05738166,0.30484432,0.3896985,0.15488112,-0.00625568,0.42992646,0.05567241,-0.30462557,0.04981964,0.14207357,-0.0715908,-0.8020833,0.18849793,0.5721241,-0.07590853,0.32913348,0.12795985,-0.4579238,-0.5341046,-0.08175223,0.10127185,-0.953125,-0.07053357,0.4277631,0.3807055,-0.53504777,0.7140625,0.42746243,-0.22358614,-0.25685817,0.13429038,-0.69710284,-0.3143439,0.02095039,0.3233794,0.333967,0.45200482,0.54512745,-0.15582395,0.15972725,-0.29485756,-0.09808052,0.03893988,0.12740406,0.06515076,0.20358758,-0.06615571,0.16253774,0.370953,-0.12439714,-0.17434287,0.09008275,0.5509115,0.72509766,-0.07593443,-0.08078487,-0.06275418,0.45433408,0.46261162,-0.19381621,0.14892362,-0.6119385,0.09371465,-0.54891306,-0.10766014,0.05459098,-0.678125,0.34001952,0.19183123,0.99609375,-0.03106902,-0.02401358,-0.09231181,0.14110038,0.06567383,0.35175228,-0.13085276,-0.1577114,0.7249349,-0.01886414,-0.93359375,-0.03778232,-0.58492476,-0.37702096,-0.35462025,-0.21187855,0.11594955,-0.5793651,-0.18853337,0.11250991,0.10933763,-0.12459872,0.464705,-0.04247713,0.38359374,0.05983334,0.35135323,-0.15133041,0.03116903,-0.12300781,0.11428188,0.05842704,0.5161058,-0.726053,-0.04503279,0.15084934,0.00513895,0.06586529,-0.1689936,0.26740518,0.36905923,-0.26458293,-0.23004802,0.28503385,0.04639573,0.10426575,0.3173709,0.97786456,-0.15634002,-0.00526033,-0.06269397,0.3210696,0.18892606,0.9796875,0.16420475,-0.20022243,-0.15229148,-0.12466004,0.13135411,-0.37976673,-0.03541362,0.03867128,-0.31352538,0.13669288,0.24971941,0.23923211,0.40321305,-0.20746182,-0.28798077,-0.42220512,0.20266724,-0.5892428,-0.53526473,-0.13478702,0.08154207,-0.5713465,-0.19968957,0.08670571,0.24508342,-0.05172594,-0.21134919,0.11471598},{0.440049499,0.207467586,0.33672443,0.144993261,0.455330133,-0.0139007904,-0.495442718,-0.492101341,0.938476562,0.0535029173,0.310477406,-0.12939845,0.093802914,-0.6328125,0.0467480607,0.344805539,0.248837098,0.0534564741,-0.0832747892,-0.66796875,1.0625,-0.761160731,0.304735601,-0.110346973,0.0148657821,0.26659736,-0.037208505,-0.20876348,0.107412122,-0.689062476,-0.057454329,-0.370110363,-0.459769458,0.0139908306,-0.316389114,0.0844073892,0.112057835,0.1435581,-0.0194733404,0.105973586,-0.366370738,0.0710120425,0.705217659,0.0312150605,-0.424732894,-0.583814561,-0.414939016,0.21144712,-0.00474620145,0.54663825,0.106609255,-0.131830797,-0.020424746,0.220793843,0.2065043,0.0447004698,-0.0971345603,0.146422327,-0.117654443,0.128966272,0.166468292,0.152790695,-0.093984209,-0.0132978205,-0.179676861,-0.214302599,-0.358364463,0.0207981765,0.240659684,-0.248411208,0.112279721,0.0419961363,0.15815562,0.129446015,-0.334016025,0.04330872,-0.346724749,-0.0259334017,-0.397007883,1.02734375,-0.0905718654,-0.815625012,0.242580369,0.334153712,0.0146456258,-0.576450884,0.174792781,0.40817979,0.406043768,0.00790797174,0.0178895853,-0.0516625531,0.210441649,0.349492073,-0.39937678,-0.323093921,-0.0737265274,-0.190425739,0.0925549567,0.0315077417,-0.11940518,-0.0825088695,-0.135210916,0.458544225,-0.135198504,0.531550467,1.046875,-0.151918918,0.40341258,-0.712109387,0.51159066,-0.731069684,0.819754481,-0.0773828477,0.293976635,0.250608623,0.00688526314,-0.0154287657,0.744193435,0.104973622,0.451497406,0.157667369,-0.16796875,-0.837890625,0.446421981,-0.272578448,-0.338896573,-0.178855926,0.185002789,-0.134746447,0.00442607608,-0.0447615534,-0.158722878,-0.565873563,0.243186772,-0.106448032,-0.170386404,-0.581380188,0.0443310142,0.834859908,-0.287032783,0.0395046771,0.350296021,-0.422661334,-0.244092986,-0.0147640966,-0.0949181989,0.114460871,-0.438333929,-0.913671851,0.0393687785,-0.151367188,-0.410103172,0.0370850451,0.171779364,-0.362285733,0.521908939,-0.013677354,0.43811217,0.0925242826,0.12251877,-0.0086609954,0.228971347,-1.09375,0.0286146943,0.82421875,0.218325868,-0.495168597,-1.03125,0.53553921,-0.417050123,-0.292051017,0.205934569,0.204646245,0.261835158,0.154773593,0.164550781,-0.101321369,-0.159674674,-0.0749140233,0.0908854157,0.167469397,1.0007813,-0.140203014,0.349695712,-0.179673985,-0.283116311,-0.0530959032,0.32525599,0.20937635,0.0284644235,-0.365027696,0.381787121,0.446160823,-0.583233178,0.696169972,-0.390704721,0.58203125,0.385863453,-0.00737664243,-0.0170934871,0.027711669,-0.174349934,-0.713867188,-0.016350003,0.826171875,0.050455045,0.115975246,0.205706209,0.419034094,-0.675585926,-0.399581105,-0.23386912,-0.244304538,0.00010177178,0.6875,-0.696428597,0.312449545,0.696986616,-0.172343194,0.288958788,0.0128190005,-0.267483324,0.403193802,-0.544320941,-0.27753365,-0.0984042361,0.328105181,-0.584201396,0.201583058,0.207437024,-0.688802063,0.034635026,0.269461781,-0.492745548,0.0630243048,-0.542279422,0.192868292,0.278396726,-0.206519008,0.129857615,0.0527400449,0.176714197,-0.362353802,0.235346168,0.130805358,-0.144052014,0.303624839,0.309247941,-0.186519399,0.106466569,-0.292999953,0.0107267648,0.334046721,0.266625822,-0.172318235,-0.104741335,0.15872331,-0.191951737,-0.121362977,0.337789863,0.188939512,-0.638750017,-0.493027806,0.410082996,0.116001122,-0.272369713,0.207431734,-0.498612732,-0.611979187,-0.055419676,0.0845193565,0.265386403,0.176305503,-0.0108936718,-0.381674588,0.875,0.201189488,0.145482287,0.26170212,0.633877814,0.147424728,-0.473603219,0.428710938,0.56326592,0.24255237,0.0217888914,0.544677734,-0.0206702333,-0.0758514181,0.134679124,0.0578930415,-0.322302639,-0.214795172,-0.116981514,0.224586338,0.108433641,0.435372502,0.324200898,0.505604625},{-0.368258089,-0.0890934616,-0.165545717,0.572003245,-0.422809511,0.477614194,-0.0509853773,-0.0121692568,-0.0764227509,0.319301158,0.292908132,-0.0681011528,-0.135237068,0.192868978,-0.0414932668,0.301707119,-0.161149606,-0.062468268,-0.194292933,0.373177081,-0.0788153633,-0.115980595,0.726345479,0.0942459181,-0.596679688,0.321071357,-0.158724681,0.308510214,0.234902501,-0.857812524,0.0129658654,-0.0202759504,-0.200556219,-0.0346528031,0.51794225,-0.955729187,0.365198076,0.182136446,0.124677449,-0.392423123,-0.171815813,0.142035201,0.2597498,0.108619325,0.0029442315,0.507440448,0.0237811878,-0.145493805,0.265692353,0.848958313,-1.046875,0.152816668,-0.168969661,0.27330637,0.131847799,-0.61328125,-0.469308048,0.192840144,-0.58610028,0.0930792615,-0.271436542,-0.172759295,-0.825195312,0.311643153,-0.8984375,0.167892426,0.12325462,-0.490006089,-0.227985889,0.135758251,0.542737007,0.15618749,-0.84375,-0.202631772,-0.270482242,-0.300794214,-0.129871741,-0.165994927,0.0379423834,-0.00713218981,0.554347813,0.353947818,-0.487998575,-0.416176885,0.0700322464,0.245548308,-0.158094376,-0.139623463,-0.246042579,-0.702473938,-0.502246082,0.13621524,-0.107143395,0.9765625,-0.110316038,-1.1796875,0.314350575,-0.214354604,0.827473938,0.0403257906,0.0570196286,0.18697308,0.0387178436,-0.515625,0.0216640029,-0.0993153155,-0.016975075,-0.0243655406,-0.347698718,-0.594815314,-0.13373448,-0.0703098327,0.191334248,-0.0995384529,0.108174935,-0.273257226,-0.207089111,-0.052243758,-0.377976179,0.161176115,-0.357251674,0.21192129,0.0868631452,0.200692087,0.369097054,0.187005058,0.34776476,1.07324219,0.0140670305,-0.240327224,-0.334991783,0.251395613,0.0148131838,0.482828766,-0.268597156,0.257799685,-0.100586563,-0.50127703,0.424900144,-0.076595664,0.0840168521,-0.0351384841,-0.0156955943,0.291033268,-0.402737528,0.0110615268,-0.541051149,-0.385656863,0.0282052401,-0.161646679,0.288087755,0.233539626,-0.780649066,0.581649125,0.529438376,0.327115327,-0.737239599,0.201642334,0.2089618,0.84765625,0.2694107,-0.0971163064,0.659505188,-0.316372335,-0.9609375,-0.707617164,0.128429621,-0.0377255976,-0.565814376,0.454060882,-0.00235412177,0.164546236,-0.0269957259,0.499074847,0.11466486,0.114254944,-0.265693009,0.233483359,-0.229456812,-0.0642315,-0.126939714,-0.337832451,0.0924469754,0.224600255,-0.326152354,0.130344033,-0.0529927686,0.426868796,-0.696874976,0.444312692,0.498472542,-0.578590035,-0.383966982,-0.203939587,-0.142046601,0.117627986,-0.263692915,0.130429864,0.234319896,-0.104969986,0.395476311,0.000452858629,-0.0496610068,-0.0876620784,-0.437417239,0.0203204341,-0.360173434,0.304792672,0.089062497,0.0103612896,-0.840624988,0.154831961,0.254904747,-0.228022203,1.1015625,-0.14895165,-0.0107135838,-0.068556875,1.234375,-0.369292021,0.509702623,0.228512943,0.00750019774,-0.336029619,0.43029967,-0.0265633669,0.253970534,-0.371244967,0.133241266,0.0773935318,0.0129648093,-0.198744684,0.106652424,0.135277599,-0.189353853,0.405233294,0.0625858828,0.703683019,-0.193922922,0.138640955,0.19916746,0.189926058,0.149385035,0.313476562,-0.0595896989,0.90625,-0.161537603,-0.0530008152,-0.302885443,0.0175367352,0.308512986,-0.448437512,-0.734375,0.243102133,-0.392791182,-0.474561453,-0.540757656,-0.341775805,0.0753215104,0.441342205,0.110156134,-0.324316412,0.637803793,-0.167928666,-0.469739586,-0.376128465,0.0215897057,0.548921108,-0.593998015,-0.0298786219,0.163555071,0.100836679,-0.148431525,0.0446847305,0.136737764,0.275282621,-0.104997173,-0.408050746,-0.487056404,0.278330326,-0.0703779012,0.199687257,-0.0418863073,0.22164157,0.310477734,-0.102500312,0.204983681,-0.556249976,-0.442220062,-0.112492263,-0.0604214519,-0.239771456,-0.40236935,-0.323330969,-0.107197836,-0.233944878,-0.20508413,-0.0727254301,0.569561303,-0.0204022303},{-0.0428392068,-0.116614036,0.0949683487,0.380934715,-0.262718022,-0.269600064,-0.164103985,0.103241168,0.155794933,0.299664408,-0.542379141,0.22830011,-0.496478468,-0.131331682,-0.225046411,0.203602299,0.299808979,0.160145774,-0.139148161,0.120805889,0.39337942,-0.0490446202,0.322255194,-0.238681227,-0.391502917,-0.00743786572,0.268487126,0.330981106,0.77734375,-0.137655705,0.181676969,0.270487666,0.281183481,-0.149850771,-0.692007184,-0.44895187,0.235363081,-0.122596875,0.023701109,0.627734363,-0.0360317193,-0.195839584,0.519274771,-0.0288913995,0.333951443,-0.321293682,-0.192866638,0.298761278,0.940104187,0.306578934,-0.287082255,0.237309113,-0.68761158,-0.301722795,-0.328065217,-0.0913191512,0.123433404,0.221736297,0.209020019,0.443053007,0.587646484,0.203155085,0.269515574,-0.0192549527,0.378980786,-0.158198878,0.0903239697,0.337774724,-0.394758672,-0.202628449,0.966145813,-0.0891173556,-0.692274332,-0.0455143675,-0.178706184,-0.0189775694,-0.403995395,0.369225949,0.0829958692,-0.140057817,-0.87890625,0.0532894544,0.451135695,-0.0891016498,-0.2890625,-0.414568007,-0.0561428145,0.587865889,-0.1415108,-0.250486195,0.00883346982,-0.147448763,0.125014648,0.179234266,0.497194588,-0.448935688,-0.148380652,-0.00617870968,-0.0561627857,0.731770813,0.463080257,0.502972126,-0.0512615405,-0.0273423959,0.19777672,0.428196967,0.0959442407,0.52734375,-0.0732381716,-0.132347465,0.00284304866,-0.0563875884,-0.132806286,0.137682274,0.361033082,-0.606950402,0.190496147,0.675048828,0.667729616,0.425767779,0.103499465,0.368268847,-0.156215176,0.0701331049,0.22067827,-0.734765649,0.451570481,0.0605187528,0.43452251,-0.190798342,-0.0632780641,0.19967404,-0.352438658,-0.127800643,-0.245133162,-0.3094244,0.0582352094,-0.676562488,0.500208318,0.217250168,0.290877074,0.872395813,-0.306591243,-0.10324607,-0.435546875,-0.250166744,-0.0664366484,-0.238318667,0.524999976,-0.1537413,0.15525867,0.264565915,-0.0932855234,-0.396444529,-0.337876856,-0.41101262,0.758789062,-0.0338129662,-0.53135556,-0.560588419,-0.359363973,-0.199772477,-0.303591847,-0.080058746,-0.59526211,0.116029926,0.7734375,0.320232779,0.255780309,0.256883889,-0.266549438,0.28500706,0.295033187,0.15724586,-0.176355883,0.025801735,0.279363155,0.33968538,-0.00679718982,0.0297656525,0.554470479,-0.236868113,0.0360057577,-0.62154448,-0.308557063,0.308587044,-0.126461744,0.0304551423,-0.0441653617,0.470744401,0.584872186,0.0864413455,-0.220712245,-0.216683432,0.136680424,0.533564806,-0.451028258,-0.295010179,-0.372425884,0.275356948,0.124146007,0.581905246,-0.162055627,0.609375,0.327979386,0.0974785984,-0.191390663,-0.23333931,0.0424197577,-0.531032979,-0.39757812,0.382787764,-0.376852721,0.031133879,0.495420247,0.198667198,-0.540729165,0.295097232,0.170384705,-0.208976865,0.385909885,0.538996279,0.34753418,0.172288105,-0.119690694,0.31053853,0.337923169,-0.051455088,-8.43941307e-05,-0.150845394,0.248736218,0.256844819,0.505989611,0.299804688,-0.635253906,0.226175323,-0.00759952003,0.010672397,-0.0523650236,-0.0162252262,0.327071905,-0.345572919,0.399265617,0.108922005,0.775390625,-0.00109017384,-0.347708344,0.537073195,0.606445312,0.238272548,0.125103638,-0.134759173,-0.0516230501,0.00268217293,0.280381173,0.0378221124,-0.39453125,0.323179573,-0.503866792,0.0671677887,-0.390520841,-0.26175186,-0.142630816,0.375827193,-0.362128079,0.0336865075,-0.561894834,-0.180717155,0.0461550429,0.0447956063,-0.184582636,-0.0678078011,0.205034494,-0.0479663201,0.0842285156,-0.146480858,-0.634027779,0.0746891424,0.36903286,0.192375541,-0.00450432813,-0.0795699432,-0.0700996295,-0.296785593,0.0883268714,0.109623328,0.0535921194,-0.0125559224,0.521701396,0.0277693551,0.0792869255,0.102290168,0.207536086,0.0416468866,-0.618861616,0.13333787,-0.729166687,-0.371125609,0.270569384,-0.752441406},{-0.22751762,-0.10034314,0.19569042,-0.13630642,0.27542213,0.21973228,-0.07858703,-0.37899667,-0.21347365,0.09132672,-0.20601736,0.24624516,0.1519067,-0.07983224,-0.16404213,-0.24480304,0.08813319,-0.04648894,0.35569662,-0.30070755,0.33595735,0.07957324,0.5502404,-0.953125,0.35462818,-0.1977818,-0.40251693,0.533179,-0.00795149,0.48237646,-0.4023662,-0.13479146,0.14508928,-0.66908485,-0.18749806,0.58203125,-0.12330473,0.20224847,-0.08149747,0.27831677,-0.14113303,0.25882626,0.26854065,0.09153391,-0.64664716,-0.16698872,0.00976247,0.01808135,-0.14112045,-0.08083573,0.13379832,0.20015219,0.14399442,-0.22464392,-0.19371544,0.17572817,0.3873866,-0.04382789,-0.29885137,0.34640786,-0.01027047,0.43059957,0.14017807,0.06868723,-0.18894725,-0.09423473,-0.24557601,0.40317696,0.07570041,-0.1590839,0.04494557,-0.27143207,-0.02992611,-0.16065186,-0.26075417,0.20452243,-0.18741757,-0.09713271,0.4288484,-0.28712785,-0.02030216,0.02057469,-0.765625,0.47676596,-0.22502182,-0.20075618,0.08299918,0.07126588,0.45705226,0.22172752,-0.01386348,-0.12158363,-0.23828258,-0.1377337,0.08862682,0.5202415,0.4406467,-0.11841978,-0.34089318,-0.36133412,0.01881375,0.17678511,-0.10662432,0.24012376,0.07855825,-0.07545125,0.07391528,0.6324013,0.14548767,-0.05288829,0.144953,-0.08081886,-0.02603374,-0.0603449,-0.12612018,0.16649605,-0.34585834,-0.33199498,0.09695645,-0.16703726,-0.01965977,-0.02951229,-0.5332362,0.0450054,-0.22844367,0.10452175,-0.53138024,-0.48157936,-0.01303887,-0.21187688,-0.36328125,-0.55475986,-0.32229295,-0.05708599,0.32620388,-0.20898145,0.7864583,0.13040118,0.06984293,-0.1786925,-0.08420686,-0.6037234,0.04183496,0.57588464,-0.1489094,-0.3230213,-0.19043092,0.00800355,-0.04284075,-0.11616991,0.3144991,0.06039925,0.30662146,-0.0966984,-0.07322874,0.02888896,-0.14063476,-0.00655975,-0.11375577,-0.6545759,0.22409503,0.5158306,-0.03589834,0.02999095,0.1410358,-0.22310583,0.5938616,0.58019304,-0.27539062,0.02018003,-0.7925781,-0.17473245,-0.08469807,0.08474963,0.01814379,0.25034016,0.45326328,-0.24877511,0.29876453,0.26957992,-0.5372243,-0.10669101,0.08400295,-0.22218816,0.3797502,-0.09499229,0.0500618,0.51945615,-0.26748478,0.11276066,-0.08033172,0.24753489,-0.0160774,-0.27919757,0.1527821,0.50552773,0.65371096,-0.06329992,-0.24614197,-0.24927571,-0.28512993,0.13087586,0.10982375,0.42092392,0.18990871,-0.06310261,-0.12511533,0.04270007,0.17398629,-0.335881,0.10546593,-0.19038929,0.32422942,0.19822957,0.22148833,0.51154387,-0.43562397,-0.25297588,-0.20944382,0.5835937,-0.80859375,0.14986713,-0.6664063,-0.04625211,-0.05930965,-0.12742625,-0.0763627,-0.07127401,0.3494018,0.25580454,0.2221577,0.4646297,-0.15677842,0.38977104,-0.12464482,-0.05182164,-0.07809755,0.08619141,-0.28023538,0.15769368,0.53916955,0.07547168,0.10278932,-0.38080856,0.37498048,0.12054078,-0.22461599,-0.5139869,-0.18258536,-0.27341506,-0.03577247,0.4186314,-0.01759847,-0.41112074,0.13767241,-0.2607113,0.02433595,-0.17629747,-0.08907857,-0.41414127,-0.10354545,0.00235176,0.00328202,-0.16162243,0.7470703,0.38873726,-0.17484435,0.04355058,-0.55412275,-0.49711794,0.43250868,0.07790649,-0.30081403,0.16459091,-0.5515253,-0.5747904,-0.07620919,-0.1105876,-0.51509535,0.01310624,-0.49201515,-0.01081687,0.29681522,-0.0174268,-0.05807342,-0.6294545,0.31920308,0.26852563,0.21435799,-0.24806017,-0.61511946,-0.01427958,-0.27441883,0.00256221,-0.08027593,-0.01079675,0.32809508,0.06285688,0.7132601,-0.10715762},{0.09957902,0.7059896,-0.05932903,0.33693847,0.02269971,0.06519994,-0.04136536,-0.19041649,0.05992863,0.25291047,0.52649456,0.44886997,-0.24027011,0.29688194,0.07597072,0.16209315,-0.7861328,0.21774872,0.05315206,0.3172907,-0.15773065,0.18991096,0.21823047,0.22121431,-0.06156944,-0.39836928,0.1243794,0.7402344,-0.46697676,0.5376157,0.07400585,0.07031406,-0.38987553,0.02336565,0.262717,-0.09767027,0.32717034,-0.55538195,0.138189,1.1796875,-0.33494467,0.57734376,0.13864301,-0.08983243,-0.31548002,-0.02435071,-0.43565124,0.47439533,-0.62779015,-0.319059,-0.5449219,-0.2890797,0.05763517,0.1860254,0.00202953,-0.08005549,0.15281898,-0.85078126,-0.32025006,0.11503208,-0.31830746,0.29497957,-0.44432566,-0.04392982,-0.11915945,0.0012563,0.07641936,-0.2315007,-0.0560048,-0.11913414,0.08152417,-0.46067515,-0.625,0.30467778,-0.46674109,-1.0013021,0.2638478,-0.14742129,-0.01340352,0.32804748,0.27714843,-0.07792763,0.34102747,-0.28320312,-0.1218458,0.16889562,0.00978191,-0.07659741,0.16361004,0.09915339,-0.45837134,-0.23586157,0.19287701,-0.06980048,-0.04275532,-0.21673071,0.14157435,0.40851036,-0.032878,0.0630523,0.09984343,-0.07353979,0.20998494,0.03867295,0.2754545,0.26056135,0.03578528,0.29200563,0.07909829,-0.1484033,0.3875701,0.32343408,-0.11134268,0.11107197,0.15379076,0.06637967,-0.03542308,-0.24650517,-0.4090488,-0.08351287,-0.5017671,0.3163668,-0.28222042,-0.196697,-0.01682065,-0.6011584,-0.14159852,0.96809894,0.14742783,0.4178441,0.02810614,-0.2939035,-0.33696547,0.0991399,0.68706596,0.20402019,-0.26566538,0.2518938,0.3749186,0.02634705,-0.5956182,-0.42945313,0.1215599,-0.16404037,0.07184235,-0.7792969,0.36339223,-0.25780535,-0.33381778,-0.01431082,-0.03896619,-0.07546274,0.2918773,-0.17223479,0.14552277,0.04176082,-0.09741738,0.3504142,0.15527344,0.7109375,0.20118174,0.6879112,0.00741908,0.39742875,0.17714447,0.33509743,0.04273318,-0.2310125,-0.1753142,-0.06934047,-0.33303016,-0.09228065,-0.5076593,-0.16896506,-0.12483829,0.05391398,-0.06766023,0.04925902,0.1753217,-0.43247926,-0.22901614,0.22377793,0.48652345,-0.3360247,-0.15914841,-0.38190106,0.09695242,0.06997523,0.16695355,0.05743583,0.08086354,-0.6231771,0.11184645,0.3816767,0.06150189,0.5934124,-0.31828126,-0.08910377,-0.20059359,0.28712294,-0.70825195,0.272355,0.16992188,0.47579226,-0.31836814,-0.365125,0.12463252,-0.29497105,-0.4543354,0.33688477,0.38847438,0.14061123,-0.08273865,0.21630672,0.8776042,0.1659633,-0.18462493,0.20257252,-0.25980896,-0.05930056,-0.14744584,0.27242258,0.16643529,-0.6539062,0.01145009,-0.01947508,-0.22075766,0.07381992,0.3162865,0.13081767,-0.13870987,-0.45107707,-0.21183696,-0.14203285,0.32141113,0.342794,-0.05078907,-0.10332554,-0.10468408,-0.0247326,-0.6669922,-0.01110043,-0.5813802,-0.3162541,0.0619675,0.18607411,0.18603382,0.03165575,0.23431654,-0.92838544,-0.24833362,0.37966463,0.26864564,-0.29393408,0.51876026,0.35074604,0.5506392,-0.97265625,-0.02399633,-0.32228723,0.2202083,0.20071875,0.5769314,-0.42858297,0.07661127,-0.25691915,0.00478255,0.01574656,-0.11986229,0.00166102,0.11249202,-0.20326051,0.40629596,0.396366,0.32518578,-0.16805013,-0.260725,-0.08276999,0.17608348,0.083697,0.1430437,-0.74348956,0.15236396,0.5453125,-0.10984142,-0.6989976,0.10961167,0.11180029,0.01199197,0.36901042,-0.42699733,0.58463544,-0.47685546,-0.3868886,0.14647672,0.02376302,0.08003569,0.15101501,0.80887276,0.31647456},{-0.0579395555,0.218738452,-0.105766386,0.195306167,-0.190528959,-0.0732370242,-0.0334052816,-0.365242451,0.273379028,0.39079687,-0.275371611,-0.153247938,-0.103511333,0.0338447653,0.173872799,0.437247992,0.0352951176,0.625192106,-0.228459284,0.0914816856,-0.424416155,-0.234854236,-0.314614087,-0.192848563,0.0319238491,-0.337752223,-0.421609759,0.067650564,-0.33272019,-0.127431273,0.0827274993,-0.407304257,0.267487407,0.0327195898,-0.26465103,0.0336184502,0.316420913,-0.189047009,0.333941787,0.433261007,0.0202740319,-0.222202361,0.0636154637,0.0131302103,0.117182449,-0.114498951,0.0715364069,-0.00653649541,-0.0661875382,0.139648438,-0.140596628,0.486762166,0.11059311,0.14496471,-0.0505117998,0.763888896,-0.354381204,-0.585785329,0.0112010976,-0.497323483,-0.0585713461,-0.153301373,0.0276592709,0.738769531,-0.430889428,-0.183592111,-0.0502951927,-0.456778497,-0.865885437,-0.137692332,-0.0979424268,-0.928385437,-0.447550446,-0.411301523,0.159859985,-0.235849053,0.291900516,-0.365191132,0.445188493,-0.100820012,-0.321307719,-0.9296875,0.026540501,-0.389847636,0.13092716,-0.0898077413,0.388442993,-0.424200147,-0.0109809916,0.256719857,-0.227562651,0.03662581,-0.327202171,-0.150829196,-0.548561811,-0.0608801581,0.96484375,0.187106565,-0.202112734,0.440984994,0.191380769,-0.657001197,-0.224121094,0.162611037,0.034053266,-0.177668586,0.0610583723,0.328148752,-0.139555514,-0.0337758064,0.423853815,-0.99609375,-0.120094456,0.677176356,0.573966742,-0.192293197,-0.0719910711,-0.554395974,0.202573508,0.353505284,0.383850634,-0.0471488088,0.188852981,0.309517324,0.84650737,0.796875,-0.0506857634,-0.311458319,-0.138669193,0.291957051,0.0560347214,0.151310772,0.790039062,-0.523615062,-0.0891118497,-0.116642281,0.185027391,-0.108404696,0.542662382,-0.192446426,0.224106476,0.34402442,0.206083789,-0.457231581,-0.199244574,-0.123018153,0.00758665241,0.231032863,-0.810014188,0.00291112135,0.478577316,-0.196846575,0.486960024,0.373905391,-0.165105596,0.0619746819,-0.283203125,-0.11079932,-0.71723789,-0.370096177,0.134258017,0.135756657,0.151768148,-0.631347656,-0.193309203,0.0981437266,-0.62890625,-0.201721996,0.394242525,-0.627343774,0.348646373,0.364257812,0.0637501031,-0.140138879,-0.560738385,0.204058155,0.0114668747,-0.00155180728,-0.14362821,-0.115916327,0.178671882,0.281203508,0.0622552708,-0.0975987017,0.423590571,0.498893231,-0.464291781,-0.402439028,-0.127878979,-0.0791103318,-0.304493815,-0.102294199,0.0483053625,-0.17477189,0.556189895,0.141610831,0.283241719,-0.308600813,-0.118829198,-0.570659697,0.182569787,0.155219272,0.476876408,-0.391695201,0.49331975,-0.0269557852,0.106695525,-0.473317802,-0.405045897,-0.114984319,0.0842744336,0.245534748,0.273267657,-0.689174116,-0.126001507,-0.717447937,0.324248642,-0.0798886493,-0.0192039441,0.0851655453,-0.0149408933,0.643576384,-0.313392162,0.522922397,0.0200391915,-0.119820163,0.155229747,0.209913045,0.251931369,0.46570617,0.353497386,0.105676986,-0.375962794,0.198322758,-0.255817294,0.185091496,0.569806159,-0.498325884,0.0143611478,-0.468967021,-0.388323098,-0.921875,0.0536984615,-1.02499998,-0.446341842,0.172783747,0.248293355,-0.423632801,0.000633793708,-0.0133052757,0.21782209,-0.554956913,0.103475049,-0.796875,0.585012317,-0.158645123,0.325995266,-0.574672937,0.0201527961,-0.452089846,-0.117403954,-0.124793388,0.383819759,0.162525207,-0.392742395,-0.317191154,-0.590122759,-0.171886668,-0.13768445,0.0795666575,-0.306721479,0.291888207,-0.54308033,0.513922274,-0.129923508,0.0300388709,-0.686458349,-0.300701141,0.0514809154,-0.0607906468,-0.326093763,-0.457324207,0.17279996,0.0468383282,0.0186198335,0.341867626,-0.0862198696,0.0923094302,-0.209852681,0.274411917,0.632302999,0.065700531,-0.172869563,0.364171654,-0.173825786,0.324262738,0.480007589,0.296896458,0.285118133,-0.0956686586},{0.140180722,-0.0117651699,-0.409976661,-0.0492739454,0.0957767591,0.545686126,0.117927812,-0.0313685648,-0.362196177,0.10082639,-0.57640624,-0.431553185,-0.00242836936,-0.0113778198,-0.155268431,0.419859737,-0.117685594,0.469735205,0.212784648,-0.206605107,-0.345519423,0.474177003,-0.18406564,-0.547460914,-0.719050467,0.0908284783,-0.463859111,-0.119958408,0.404617071,-0.465820312,0.282188118,-0.146910533,-0.264589399,-0.137188047,0.105164871,-0.0235814583,-0.266662359,-0.451401651,-0.611545146,0.501323581,-0.0746810585,-0.369160056,-0.208930299,0.233877704,-0.277420729,-0.856249988,0.15231064,-0.84765625,0.1454615,-0.362157762,-0.222150505,-0.22323972,-0.00199439214,-0.441131175,-0.15084593,0.472274125,-0.666449666,0.614483178,0.27527079,-0.12744467,0.139079943,0.010332115,-0.308616787,-0.783854187,0.244221553,-0.100108854,-0.210919112,-0.345529228,-0.365175188,-0.00566881709,0.203532293,-0.144050628,-0.508228064,0.715820312,-1.04101562,0.526925206,-0.322224289,0.050899934,0.405056417,0.202628076,-0.175769731,-0.274469346,0.256866127,-0.201144397,0.102078661,0.766927063,-0.420013428,0.136707917,-0.130383968,-0.135263115,-0.00300274394,-0.793359399,-0.213883132,0.0122151393,-0.00672656856,0.281336427,-0.106450453,0.120356672,0.101321056,0.00203928514,0.285971493,0.407174379,0.29984346,0.0469764918,-0.48820892,0.23870644,0.59845525,0.242793143,-0.180230901,-0.248855844,0.3639943,-0.490096092,0.0774119571,0.228507519,-0.147965401,0.0331942849,-0.2724922,-0.271541923,-0.101019889,-0.614257812,-0.0978743583,0.222650215,-0.236357719,-0.0964223444,0.352612078,-0.00405979436,-0.161560819,0.852734387,-0.16356878,0.248850733,0.499727458,0.128437757,0.484068066,0.256888211,0.439036459,0.0623058081,0.202162832,0.363969296,0.241241992,0.0424762331,0.137698695,-0.0700315163,0.189071655,-0.495090783,0.467803627,0.341828167,-0.178286284,-0.00812458526,-0.0144607071,0.2344549,0.19040814,-0.00941191055,0.0199444741,-0.515715837,-0.301685095,-0.110128812,0.692447901,0.00681118295,0.265529096,-0.268512428,-0.0548282973,-0.29001677,-0.159653962,0.0417369604,-0.476247489,-0.125067398,0.209980235,0.0126438849,-0.200128764,-0.301631212,-0.6640625,-0.0455478132,-0.0785686299,-0.339901537,-0.115650341,-0.0326105021,0.470789641,-0.198663279,-0.115258001,0.306886226,0.423403531,0.15731217,-0.16355896,-0.544780374,0.485006899,0.0148107437,0.615828812,-0.229564711,0.223170102,0.0428542644,-0.290972501,-0.280203402,0.0832575187,-0.76953125,0.37801075,0.00970543642,0.204203814,-0.547096133,0.0416061655,-0.0148766562,0.322307438,-0.218257025,0.547851562,0.514269769,-0.240079522,0.192375124,-0.0806200281,-0.00664980244,0.162611037,-0.667689741,-0.0280598458,0.8828125,-0.220178992,0.357355654,0.665364563,0.250032544,-0.29776001,0.0346835405,0.0885886848,-0.000205727934,-0.137204111,-0.117954135,0.229998946,0.384787083,0.343683213,-0.503308356,-0.536337197,-0.0449591987,0.190911934,0.214337468,0.480309308,0.290947765,0.190477669,0.709292769,-0.0521289073,0.100243114,0.289032757,-0.72670716,0.692826688,-0.15234375,-0.160589874,0.268604755,0.131375998,0.143536374,0.118394084,-0.292962849,-0.106470726,0.196262717,-0.3203125,0.158212006,0.322232366,0.223198041,0.0907755867,-0.154181659,0.324352533,0.00341138337,0.373813748,-0.493950993,-0.068289198,0.387916416,-0.0739925951,-0.294087887,0.0266497247,-0.984375,-0.0208713524,-0.208634868,-0.0540717021,0.100363694,-0.418809444,0.125306994,0.51953125,-0.383742571,0.010701023,0.155255452,-0.183489487,0.418157011,0.337727875,-0.0742133334,0.0900218412,-0.25873217,0.0454291068,-0.267606199,-0.732812524,0.141122311,0.0646967366,0.034949448,-0.0367487408,0.29684183,-0.513635039,0.90625,0.530790448,0.0110118901,0.072750546,-0.12940827,-0.409281135,-0.0275924262,0.136672541,-0.208459109,-0.0347309224,-0.0542233549},{0.00879553985,0.273393214,0.248819247,0.671508789,0.593229175,0.445605457,-0.273445368,-0.0793468133,-0.238820925,0.289065629,0.32832706,-0.575646043,0.488420755,0.364355475,-0.369032115,-0.732421875,0.439260781,-0.156047076,0.288974077,0.594531238,0.253047973,-0.546875,0.144062221,-0.0618484281,-0.235810012,-0.0498053618,-0.361342281,0.079078272,0.52336514,-0.082053557,-0.58984375,0.261755377,-0.187948868,-0.0920551866,-0.576280355,-0.674979985,0.0504169799,0.30280292,0.245155215,-0.0352275893,0.0562518574,0.0517936498,-0.0223200135,-0.408858359,-0.129914969,-0.101077266,-0.273468345,-0.193843335,-0.389493763,-0.0737614855,0.33514908,-0.0267581362,-0.34772858,0.731336832,0.280170649,-0.242668182,0.432091355,-0.448093981,-0.222671837,-0.391777784,0.0776130706,0.230041265,0.0910400376,-0.00092156895,-0.212965384,-0.127467066,-0.586090684,0.310412526,0.293858796,-0.485484719,-0.644736826,-0.0393695571,0.252888501,-0.122777641,-0.540798604,-0.175802708,-0.14347291,0.244474992,-0.119212739,0.91796875,0.245749086,0.000278852385,-0.132273614,-0.0159841739,-0.0918148682,-0.0381069258,0.155202329,0.153290123,0.12462122,-0.0408069491,0.0524291992,0.274478108,0.269667715,0.149922743,0.429084331,0.267531425,-0.191367626,0.289091796,0.96484375,-0.120625019,0.146971107,0.20886907,0.58203125,0.203105703,-0.0703056008,-0.20650737,-0.0544341505,-0.584244788,0.431674451,-0.632998526,-0.440183669,0.129321575,-0.0472194217,0.0289987493,0.0192899741,-0.113270648,-0.0414971858,0.0429384969,0.223668456,0.36717543,0.0693188012,-0.263586968,0.00555325532,0.435394973,0.526537716,-0.00952563901,-0.552821815,0.23537083,-0.458899468,-0.0884510577,0.101231776,-0.0720132291,-0.41025728,0.0881833434,-0.0642283186,0.247000754,-0.687011719,-0.0263712164,-0.32517755,1.32343745,0.49394086,-0.153316185,0.0554860421,-0.0216632821,-0.647460938,0.184556901,-0.864843726,0.076122731,0.322909385,-0.0371034816,0.0222804919,-0.164101958,0.12414638,-0.434968174,0.08085794,-0.101566814,-0.0441877767,-0.322459012,-0.0334789306,-0.126936868,-0.159156278,-0.253882617,-0.114530139,-0.400154889,0.554939508,-0.21292761,-0.479003906,-0.292807728,0.184158251,0.0364321694,-0.060782101,-0.115759932,0.195786253,0.457999468,-0.490234375,-0.171849295,0.371085644,0.0308637954,-0.636284709,-0.585693359,-0.168445617,0.373300344,-0.419233829,0.786458313,0.676809192,0.593544424,-0.406114638,0.456123471,0.138181537,0.415998727,-0.157191217,-0.0649437904,0.184586093,-0.138664886,-0.759114563,-0.0471029207,0.858723938,-0.205145359,-0.0685661584,-0.287134737,0.0533279479,1.015625,-0.671688974,0.0717285797,0.460698336,-0.127938434,-0.0565259755,0.224052534,0.0969065949,-0.129930332,0.0129451174,0.176178172,-0.0579516143,-0.0508822165,0.296773285,-0.0124903237,-0.0622015186,-0.149899647,0.332276791,-0.304709703,-0.0378526337,-0.0789018124,-0.404266119,0.00212464202,0.140582293,0.0968578458,-0.357214719,0.678222656,-0.20895867,0.0219341274,0.131802961,0.115449511,0.0106814699,0.573720098,0.00936940312,0.0222792327,0.00720451633,0.476721942,0.404304981,0.0184648652,-0.0390920267,0.830078125,0.0623551644,-0.415993422,-0.0676210597,-0.140616193,-0.244687065,0.221691519,-0.126977727,-0.57020402,-0.576119065,0.841796875,-0.438387781,-0.00635028956,0.165994465,0.646701396,-0.00313667278,-0.00156969076,-0.160627171,-0.0327156,0.0486870147,0.130845964,-0.682812512,0.0543527268,-0.156714633,-0.154836312,0.237218305,-0.135754794,0.169402421,0.0969077498,0.280241579,-0.267547846,0.123026043,0.554003894,0.145042494,-0.0651608855,0.0652017668,-0.206507653,0.395337969,0.151871279,-0.201704547,-0.0828032941,-0.315363944,0.0791040733,-0.374118507,-0.259813964,-0.688878655,-0.361271918,0.139149919,0.00637396611,0.0918366835,0.358351946,0.336024314,0.245704934,0.132263184,0.265554458,0.523238897,-0.355449498,0.260750681,0.21336098},{-0.346710205,-0.140128687,-0.239299208,0.0983925238,0.390295565,-0.379681289,0.141125351,-0.0450823903,-0.277438551,0.184591681,-0.4733724,0.125446364,0.460912466,0.00451293634,0.23986876,0.820667624,-0.104208276,0.266599864,-0.715820312,-0.15230982,-0.451092154,-0.0414543264,0.392395973,0.244592741,0.406088084,0.296212733,-0.102276139,0.142582953,-0.0147379637,0.219289556,-0.103505298,0.0375753939,-0.0364567675,-0.0239564087,-0.556640625,0.108096451,0.507774591,-0.00575861055,-0.135585502,0.906901062,-0.522727251,-0.0102482093,0.352430552,0.755468726,-0.0626474693,-0.564621925,-0.94140625,-0.0279585328,0.0490372144,0.334143996,-0.268505394,-0.0957140997,-0.639008641,-0.173255607,0.821614563,-0.566499233,0.615234375,-0.0158105735,0.173745245,-0.678013384,0.0435488671,-0.0599858724,0.303812832,-0.202712193,-0.0893577114,-0.192822054,0.462890625,-0.218206435,0.334942847,-0.105896525,0.165001869,0.00231927191,-0.333902508,-0.21778731,-0.240726173,-0.72185725,-0.149800971,-0.42967701,0.26362738,-0.410173088,0.0303575397,0.0279068518,-0.00515220594,-0.0996242166,-0.314434618,0.343499422,-0.369822472,-0.124333732,-0.473575354,-0.186011657,-0.523322582,0.180070385,0.102807716,0.627535641,-0.0311431885,-1.01171875,0.131818756,-0.0856714174,0.276323229,0.207042783,-0.0190914646,0.275376379,0.338832825,-0.0778771192,-0.255825996,0.0152502432,-0.167438522,-0.180672228,0.295022517,0.190032348,-0.00576126855,0.0564143471,-0.458571225,0.0454271697,-0.242805034,-0.57182461,0.828125,-0.712890625,0.180621371,-0.694475472,-0.136733621,0.248433053,-0.136700988,0.0788386986,-0.281331658,-0.257817626,-0.217765585,0.0416580997,0.165074617,0.111854881,0.251460284,0.349691242,0.0369087681,0.198282972,0.0437192097,0.293913245,0.411060482,-0.306610793,-0.895507812,0.287126869,0.00391061883,-0.0437988788,-0.272565275,0.726128459,-0.536994457,-0.164608181,0.235370263,0.725176394,-0.300802857,-0.446194947,-0.0741878152,-0.320356548,-0.353497595,0.305728376,-0.200237989,0.736718774,0.168973088,-0.074747771,-0.124443747,0.349508703,-0.442432463,-0.0631288067,-0.00131476938,0.263759106,-0.152337566,-0.281208158,0.105502263,-0.2466034,-0.167497203,0.083696954,-0.356610179,-0.0111518707,-0.0333649516,0.216310471,0.0443248786,0.229421213,0.317421883,-0.0346342325,0.525160849,-0.271550775,-0.213396996,0.18456316,0.239271194,0.0219555479,0.187928319,-1.015625,-0.43359375,0.0401408486,-0.0969112515,0.127447456,-0.133828759,-0.237842202,0.137787625,0.428899676,0.0425962545,-0.135254979,-0.921875,0.0732471347,-0.13184914,0.770312488,0.115477912,-0.0817712173,-0.041153606,-0.573739052,0.175274491,0.269375771,0.141135678,0.356834352,-0.00039375035,0.392564267,-0.151856646,-0.164611623,0.287118375,-0.116647556,0.0633407235,0.076199919,0.132310182,0.444263607,0.0998416096,-0.318447143,-0.50390625,0.0732470304,0.24405849,-0.00902947877,0.0585536882,-0.383179754,0.20608516,-0.0360177718,-0.333834141,-0.391570449,0.156642765,0.149870142,-0.338735789,-0.60271138,-0.176650792,0.8125,0.124872051,0.0683508068,0.465879142,0.109388284,0.0205907337,0.0417076088,-0.297681063,0.0676194951,-0.286948949,-0.105496973,0.389840543,-0.0401229449,0.0893154591,0.120636471,-0.306553185,-0.901041687,-0.59908855,0.0237094294,0.470624208,-0.0274270047,-0.117442146,-0.39563325,-0.139180124,-0.220794618,0.53125,0.551097989,-0.0324215218,-0.46774444,0.0679092929,0.354605347,0.686718762,-0.386600584,0.22052896,-0.0493917279,0.070527181,0.771972656,0.353667825,-0.166955337,0.468534887,-0.206103668,-0.435286462,-0.511778831,-0.118189678,0.0939818323,0.0084377462,0.171323493,-0.380773723,0.437333763,0.115673825,0.144032866,-0.164540201,0.513870001,-0.249335185,-0.199235409,-0.00155606039,0.214869693,-0.18212451,0.0861434937,-0.304608464,-0.381918311,-0.480293483,0.225558266,0.424845189,-0.162147164},{0.130886912,0.111781694,0.061961364,0.63671875,-0.0470079556,0.0376849733,0.290917724,0.0927992016,0.718345881,0.241699219,-0.376941144,-0.0596960187,-0.158675656,0.10785947,0.197611496,0.151897654,-0.499275446,0.489144742,-0.397388309,0.77734375,0.0189845506,0.0167675707,0.0910604373,-0.275365591,-0.811197937,-0.0398951061,-0.292057306,-0.0927491412,0.0962047055,0.235193044,-0.687294424,-0.784667969,-0.129867122,-0.93359375,-0.0521268956,-0.48021999,-0.307951123,0.684895813,-0.391733527,-0.0110700531,0.0380297266,0.0866189972,0.241183087,-0.588809729,0.107684113,0.0110933352,0.272475958,-0.104437083,0.243039146,0.109099813,-0.0421041846,0.0856764615,0.0269427449,-0.817708313,-0.655815959,-0.189453125,0.131324112,-0.0908114538,0.134284168,0.578480124,-0.14890334,-0.0243891776,0.290840864,-0.0582043864,-0.689174116,-0.756036937,0.133246347,-0.391736537,0.0521065854,0.287151575,-0.304792136,0.0306974705,-0.139637053,-0.169026107,-0.0206763577,0.0125185065,-0.071561493,0.0206137151,-0.132289335,-0.128882676,-0.0142012248,-0.459802568,-0.173783451,-0.166998491,0.998046875,0.325252205,-0.03285693,0.287109375,0.423694968,0.0395649187,0.237770334,0.0104596345,-0.127937973,0.591950476,-0.507656276,0.301639318,-0.294906497,0.165039062,-0.301848739,0.145062789,0.0421239808,0.329963237,0.362364978,-0.152349219,-0.1440579,-0.0338386744,0.277264625,-0.28586179,0.107193977,0.357328117,-0.215697914,0.379891604,-0.196777344,-0.706163168,-0.300534725,0.528734088,-0.00666292058,0.00022368964,0.0803429931,-0.193354428,-0.104418591,-0.397042423,-0.178105175,-0.00385573995,0.290027648,0.0430856757,0.117025502,0.215818703,0.95703125,-0.640066981,-0.0561382137,-0.191870272,-0.0751520023,0.571661949,0.260742188,-0.222566351,-0.0549725257,0.0053880671,-0.519205749,-0.211467549,0.245633081,0.158273384,-0.193289623,-0.195914537,-0.259651512,0.062423408,-0.99609375,-0.0669271573,0.244297519,0.333781451,0.082277216,0.0798845589,-0.204596788,0.229933217,0.335737973,0.3544285,0.487934738,-0.225533158,0.0272828452,-0.0629184097,-0.217868671,0.117156126,-0.25193119,0.151837826,-0.641718745,-0.415865391,-0.212982446,-0.311426669,0.457702637,-0.0505012721,0.0739219189,0.269553572,-0.107636102,0.361570477,-0.334969908,-0.260689676,-0.120092444,-0.603236616,0.073000133,0.346486866,-0.0482032932,-0.46648258,0.376805514,-0.487758577,0.277293086,-0.110139474,0.371987939,-0.212882861,0.298790455,0.220296606,0.19484289,-0.683984399,-0.153815553,0.323208511,-0.172986582,-0.516927063,0.706217468,-0.0166719258,0.148905888,0.535610437,0.339824796,0.0759513453,-0.61994487,-0.612011731,0.230903432,0.0883461386,0.229453772,0.238231272,-0.0805412307,0.539801538,0.0297918301,0.28997317,-0.0125310058,0.0695688352,0.335988462,-0.32600385,0.470406443,0.344601005,-0.164987758,0.508703411,-0.05015276,-0.060979642,-0.138214394,0.048193451,0.00315031549,-0.799218774,0.774857938,0.175384998,0.0974323153,0.0279470999,0.0406412631,-0.219229594,0.0409093462,0.405118197,0.024524929,0.741406262,-0.458586514,0.15779607,-0.305522174,-0.234742641,0.208977267,-0.0947844461,-0.263754308,-0.0580987595,-0.163613006,0.424692631,-0.790482938,-0.592122376,0.370871812,-0.0968513712,0.26171875,-0.59314388,-0.340944827,-0.14006193,-0.578125,0.297017902,-0.142055467,0.356669307,0.308486342,0.0356473327,-0.217317492,0.589104712,-0.598067462,0.395412862,0.552564561,0.335903913,-0.0276080798,-0.296849102,-0.0184390061,-0.106934607,0.475226164,0.0153771946,-0.0284239426,0.0211067572,-0.432829469,-0.515478492,0.415938288,0.88671875,0.511337638,-0.451807767,-0.294998586,0.208870962,-0.647460938,0.171387777,-0.331071436,-0.502272725,-0.0460129902,-0.334475458,-0.306587368,-0.026835274,0.123936668,-0.05760042,0.053219866,0.190437302,-0.210974827,-0.300651461,-0.24020867,-0.261616737,0.916666687,-0.00460043643},{-0.14303574,-0.19636312,-0.57018226,0.2587296,0.1115141,-0.00752971,-0.46188837,-0.4699219,-0.25381044,-0.14603534,-0.05172882,-0.19869396,0.43391928,-0.05858569,-0.65767044,-0.41224888,0.28903437,-0.01546029,0.4919085,0.4211263,-0.31325063,-0.9453125,0.48946846,0.2085291,-0.09281425,0.11032931,0.42015624,0.05931164,-0.14550397,0.452751,-0.3534063,0.36755165,0.2450972,-0.2221278,-0.83203125,-0.00986284,0.41787463,-0.08712355,-0.29393116,0.25775743,-0.26762328,0.15386887,0.29783282,0.29306445,0.24289359,-0.25680652,-0.2841825,-0.21781705,-0.09720871,0.00161937,-0.18306206,-0.27441046,0.38182986,0.11693545,-0.87109375,-0.30850026,-0.03144634,0.05855186,-0.4644729,-0.63,-0.08345037,0.0624439,-0.1562398,0.01135528,-0.07394274,-0.430697,-0.0130607,0.2094592,0.09884233,0.14895847,0.23778895,-0.5271701,-0.17043063,-0.73995537,0.2363415,0.00587716,-0.71809894,-0.27041122,0.6273438,-0.20561238,0.4081652,0.27057907,-0.07886069,0.04271742,-0.84375,0.474808,-0.48688617,-0.10782645,0.19630398,-0.39533305,-0.2968789,0.08104967,0.05498673,0.41012695,-0.14743727,-0.6268136,0.3282332,-0.7586495,0.02696768,-0.32511392,-0.09229686,-0.08913491,-0.05663603,-0.6856771,-0.37089384,0.11763799,-0.24798277,-0.04881221,-0.40333104,0.4453389,-0.29296017,-0.87421876,0.16995527,0.32416314,-0.2030599,0.0012955,-0.1625567,-0.984375,-0.5253057,0.01308378,0.2735787,-0.13225016,0.07470526,0.25060278,0.41405088,-0.03231696,-0.39445055,-0.18836549,0.15768656,-0.40776092,0.3397167,-0.3220259,0.5115017,0.04516636,-0.39713177,0.00529971,0.12487805,0.04476529,-0.34170604,0.12745681,0.36523438,0.29580966,0.1523697,0.3495658,0.0146897,0.46097177,-0.15669096,-0.35925543,-0.06685778,0.16754808,0.36710355,-0.42180523,0.13332964,0.05593413,1.234375,-0.11699058,0.3670847,0.26955333,0.5197088,0.60411006,-1.0625,-0.05187603,0.12402876,0.6496652,-0.2735154,-0.37498596,0.44343105,-0.12688853,-0.7127757,0.24319167,0.01314217,-0.0604533,0.41666666,-0.09498848,0.35539064,-0.39146206,0.15137771,0.46728516,-0.17141655,-0.03787184,-0.69140625,0.4483817,-0.01987188,-0.01813101,0.52009827,-0.36626953,0.18451998,0.19144568,0.20703474,-0.33488235,0.1288605,0.00515229,0.67578125,-0.68066406,-0.08280993,0.33004808,0.06383084,-0.44418362,0.08570084,0.1703667,0.42182428,-0.43902192,0.25585938,0.0484982,0.6336263,-0.6501736,0.13373928,0.00642334,-0.16797876,0.01718841,0.25373715,-0.22470228,-0.315405,0.4656744,0.7398437,-0.2303642,0.09788013,0.49488384,0.35246137,-0.06517713,-0.02997884,-0.03995134,0.0467879,0.15628554,-0.7162642,-0.03636203,0.00881451,-0.25882864,-0.08615665,-0.3064983,-0.13529104,-0.18843064,-0.18507522,-0.08127964,0.39257812,-0.49097842,-0.3457748,0.3701091,-0.17321227,0.63671875,0.22951879,0.06160491,-0.3426282,-0.03431497,0.14987971,-0.0383076,0.30365348,0.4734126,-0.6814236,-0.7406994,0.14946625,-1.0742188,0.04126181,0.4732761,-0.14979222,0.52872986,0.4784873,0.07739546,-0.14993358,-0.83203125,-0.08564334,0.17777255,0.4254307,0.6779514,-0.26365578,0.25290287,-0.29006192,-0.22263004,-0.6230789,-0.19624628,-1.1171875,-0.1815102,0.5636018,0.44228062,0.09008325,-0.13231008,0.5864955,-0.00607251,-0.5623653,-0.04336761,-0.47263652,-0.31075436,0.4297991,-0.56489414,0.49792778,0.36602694,-0.21826512,-0.0625048,0.02376671,0.0815799,0.32401252,-0.79622394,-0.9160156,0.06988083,0.00675357,0.3358246,0.03835093,-0.28502092,-0.01707995,0.05128005},{0.4013624,0.16643497,-0.29304135,0.25390175,-0.02144492,0.35846546,0.4402536,0.53683037,0.45183137,-0.616862,0.4617228,-0.11062057,-0.04713115,0.21203153,-0.12843984,0.16798641,0.13325605,0.25493893,-0.20715268,0.343493,0.00534213,-0.4385622,-0.15428662,-0.12114648,-0.18067405,-0.18996331,-0.3319606,0.34075612,-0.43148184,-0.00411064,-0.02215916,-0.39072388,-0.51871747,0.06520967,-0.1157442,-0.2119433,-0.04098167,0.17329922,-0.0473031,-0.10015437,-0.049884,0.01131981,-0.6425781,0.30464897,-0.33981794,-0.09131408,0.12026274,0.8261719,-0.1081345,-0.00627745,0.54817706,-0.48826563,-0.27143478,-0.38676915,0.10863205,0.28409144,-0.0832545,0.30555245,0.51735276,0.00737173,0.25496572,-0.21125509,0.01187661,-0.42486477,0.35754395,-0.29200676,0.23668768,0.32438534,0.14401443,0.03120202,0.47332057,-0.30466172,-0.984375,-0.9941406,0.14199473,0.11123684,0.03918628,-0.5349164,-0.26753938,-0.23083848,-0.5094975,0.10595436,0.04165059,-0.09229613,0.50718915,0.5658784,0.02172486,0.29683053,0.57070315,-0.19779082,0.44844425,-0.07760677,-0.14057074,-0.22648984,0.6509233,-0.29473254,0.7395241,-0.06734883,0.17580785,0.40557486,0.22255568,0.22163877,0.5135006,-0.0084356,-0.85026044,-0.82421875,-0.7753906,-0.08597299,0.36322743,-0.16251856,-0.46271172,-0.36138174,0.33884427,0.49888122,0.21922195,-0.30851564,-0.1971807,0.35434502,0.45888117,0.08422422,-0.6185303,-0.6461589,0.8984375,0.08712488,0.27923375,0.25578654,-0.28706238,0.5012207,0.10806993,-0.15865448,-0.5011299,-0.2556949,0.12463792,-0.08180232,-0.20703584,-0.164968,-0.40616223,-0.28614697,-0.6713867,0.11713062,0.3134068,0.19565065,0.10838845,0.23187676,-0.31930664,-0.07542457,-0.03831748,0.14301158,0.15481853,-0.2793408,-0.59244794,-0.60927486,0.11188264,-0.28411514,0.13574451,0.19134384,-0.47581777,0.05760881,0.29583332,-0.97265625,0.2373653,0.21083939,-0.29013088,-0.12308769,-0.09717623,-0.34974965,-0.18065839,-0.02244193,-0.30561265,0.16357097,-0.04576877,-0.5125411,0.31225106,0.3341506,-0.08788466,-0.33385813,0.03736398,-0.44319198,0.3419936,-0.0942203,-0.05375864,-0.00539598,0.052251,-0.04622285,-0.07550976,-0.30066583,-0.13428897,-0.09639855,-0.46283144,-0.19096297,-0.73372394,-0.22205716,-0.06593701,0.09545833,-0.09131538,-0.15714501,-0.5357064,-0.2615607,0.0599467,-0.27345076,-0.2587275,0.6528125,-0.42643228,0.21840198,0.11959186,-0.00724705,0.11695882,-0.11193662,0.33991653,0.30276805,-0.3828963,0.16257095,-0.09322513,-0.40328124,-0.2411646,0.310476,-0.04707409,-0.35650334,-0.06840773,-0.1523703,-0.37613377,-0.16556686,0.39464718,0.6753472,0.0435851,0.1469919,0.12459499,0.433356,-0.45458984,-0.16412206,-0.53131855,-0.25770566,-0.08546175,0.5390625,-0.3163392,-0.1147617,0.04785228,0.23975474,-0.09399897,-0.1430804,0.09081053,-0.02076508,0.36016256,0.11571848,-0.10446032,-0.42484087,-0.0458672,0.61678165,-0.17285517,-0.43076593,-0.02658026,-0.4092102,0.22606924,0.11620566,-0.43768603,-0.43737087,-0.47167057,-0.25484192,-0.36401108,-0.08473128,-0.35544044,0.21140274,0.00888221,0.5005763,-0.14892414,0.3721495,0.8535156,-0.08423568,-0.2270204,-0.03923432,-0.5309082,1.0273438,0.06254105,-0.04506022,-0.19431323,-0.77408856,-0.18457504,-0.34832764,-0.07470436,-0.14558966,-0.21824174,0.44576627,0.05797673,-0.39145815,-0.7792969,-0.15964913,-0.1264727,-0.61848956,1.015625,0.2138192,-0.23684019,-0.4454506,-0.42969948,-0.2369378,-0.03173349,0.07029603,-0.5428025,-0.3377179,-0.00792251,0.6530413},{0.0690805092,0.0491914637,-0.251865894,0.0370863415,-0.0283991545,-0.805989563,-0.343676031,-0.218668506,0.380607992,0.278216898,-0.105676837,-0.028011851,-0.43637839,0.923177063,0.379036456,-0.0518829003,0.269335926,-0.0761375353,0.182628796,-0.180692717,0.295909584,-0.0215908643,-0.54124099,0.0476186313,0.225162253,-0.385574251,0.163591787,0.471420586,0.0112843364,-0.762019217,-0.305567145,-0.0310245659,-0.231435761,0.229104087,-0.218813777,0.0771380514,0.531352818,-0.0781293735,-0.323112428,-0.0788592249,-0.0285373405,0.0415620953,-0.543247759,0.0427103415,-0.684952438,0.0709885806,-0.02523995,0.3282848,-0.350683272,-0.142642081,-0.190967605,-0.0666617081,-0.0104035223,-0.00272502936,-0.140650705,0.165029764,0.529843748,-0.224117503,-0.0478398614,-0.101855248,-0.447222859,0.173818499,-0.289961427,0.22907576,-0.767089844,0.209067628,-0.444277346,-0.0947187692,-0.414851785,0.0139583135,0.604675293,0.136260062,-0.120540686,0.150422439,-0.593536377,-0.0867130384,-0.56307447,-0.057855241,0.225524515,-0.33006236,-0.164582357,-0.166460499,0.0661971495,0.538318455,0.400083691,-0.75,-0.0710564107,-0.0477798879,0.52307415,-0.0606873967,-0.188048705,0.717187524,-0.120104097,0.247636542,0.199179605,0.317172348,0.46981293,-0.0951524153,0.437700659,0.0229712967,0.084500961,0.682291687,-0.189549088,0.357404441,-0.166045874,-0.35550037,-0.126951337,0.721875012,0.134798974,0.393613517,0.479188025,0.0194860026,0.0291710645,0.82421875,0.642045438,-0.744531274,-0.328157932,0.170453385,1.37109375,0.189948723,-0.176340759,-0.240137309,0.369929761,0.123692192,0.498505443,-0.162571222,-0.22659725,-0.729817688,-0.129780903,0.259747595,0.0116484081,-0.0881485865,-0.9296875,0.00956116058,0.149412349,0.221161395,-0.186980277,0.529119313,-0.00311072427,-0.14352417,-0.213337243,-0.242617264,0.368033171,-0.340738475,-0.0579082631,0.361416548,-0.00320741488,-0.427947998,-0.290032774,-0.00566335395,0.215855971,0.129484177,-0.015130287,0.0978490263,-0.0623210967,0.310772747,-0.334923953,-0.0844861716,-0.55252403,-0.0471118465,-0.465076953,-0.34845075,0.07592801,-0.0183325335,0.10253305,-0.301735222,0.163500369,-0.554780483,-0.0550637208,-0.544419646,0.396656722,0.104764916,-0.00537803071,0.26182726,0.384617299,0.845703125,0.509791672,-0.15917547,0.0261458308,-0.256788433,-0.237781197,-0.150336832,-0.508939326,-0.519484162,0.0594532676,0.0321725532,0.00711650634,0.0480345301,0.388867199,-0.389718205,0.185490608,-0.00544235669,-0.348649174,0.0690987855,-0.0347255692,0.0423411727,-0.0321438573,-0.490707874,0.00200695009,-0.261738569,0.0310601126,-0.00856887735,-0.0114742443,-0.443211406,-0.204092279,0.637695312,-0.00443338742,0.075002864,-0.0652001649,-0.162632108,-0.609015226,0.0468170494,0.240592048,-0.377035201,-0.448028147,0.0674060881,-0.196770981,0.380754203,-0.0372098722,-0.0974397436,-0.00347485789,0.581840694,-0.0961700082,0.147429541,0.0795610622,0.0103810737,0.0426995531,-0.128879815,0.0754180402,0.0561057553,-0.0335797407,-0.0820007026,-0.744673312,0.341633409,0.176763907,-0.539424956,-0.320468754,0.000684155733,0.0859590173,-0.332055986,0.616938174,-0.556335449,0.547876596,0.333941609,0.2890625,-0.196756288,-0.212767586,0.652698874,0.0560285486,0.138590738,0.0519919097,0.439108461,0.161151007,-0.439062506,0.143579483,-0.354489028,-0.0869177282,-0.0519923903,0.155214906,-0.655598938,-0.495117188,0.0935255066,0.130393952,0.0729451552,0.0052568824,-0.2703982,0.0285582393,0.0596888773,-0.176787227,-0.218205154,0.175074086,0.202124074,-0.00226643193,-0.39455837,0.236373335,-0.0623544902,0.0244330633,0.143062159,-0.232922629,0.14453344,-0.116474912,0.469618052,0.233299941,0.250204802,0.613085926,-0.108171232,-0.232926354,-0.297631323,0.684895813,0.61339128,0.259832501,-0.000556007726,-0.20460932,-0.523711622,-0.142007247,-0.430049181,-0.271451592,-0.76953125,-0.144007161,0.579087436},{-0.64453125,-0.60796875,0.08618258,-0.38791233,0.07379609,0.23920819,-0.10707974,-0.56802773,-0.19919291,0.08274045,-0.02674088,-0.07788732,0.22273415,0.6948242,-0.17093605,0.06858408,-0.9375,0.01581011,0.04517518,-0.98828125,0.12200242,-0.09539903,0.15377833,-0.03103994,0.0417314,-0.15329593,-0.37697583,0.29680833,-0.16063246,-0.29192463,-0.546358,-0.8769531,0.5003139,-0.07247792,-0.10912049,-0.8765625,0.10520872,0.06741461,0.5008769,-0.16459551,-0.20210858,-0.05529349,0.02814549,0.27441046,-0.16741046,-0.15725066,0.09859603,0.267696,0.17971656,-0.80859375,-0.3173472,-0.01378826,-0.03987177,0.05309664,0.6359863,0.69921875,-0.8300781,-0.3701286,-0.03858356,-0.24610436,-0.62751114,-0.08911807,0.43858245,-0.32234475,0.09716962,-0.26070178,-0.98046875,0.5894886,-0.38088235,0.7569444,0.139717,0.32333985,0.06598628,-0.32822236,0.3035815,-0.10789577,0.05862146,0.3125468,0.34179688,0.23085655,0.257692,0.18795009,-0.18404844,0.10815164,0.4518229,0.38091886,0.23917943,0.23626226,0.04843884,-0.08668254,-0.33198583,-0.4570005,-0.34579015,0.37883112,-0.07976163,-0.3830342,0.50809604,0.5793679,0.24510692,-0.15864788,-0.77734375,0.2888919,-0.14459194,-0.25295758,0.00286705,0.15434669,0.21736485,0.48221627,0.66206396,0.8203125,-0.5681296,-0.01328892,-0.18114078,-0.3946828,-0.05885207,-0.4492811,0.14890872,-0.5815598,0.21442184,-0.07077511,-0.15129389,0.8526786,0.25782877,0.05160151,0.04793066,0.24273132,0.0377222,0.57367367,-0.26160496,0.12625323,-0.4567122,-0.49023438,0.10601177,-0.01473744,-0.74121094,-0.01274817,0.06543847,-0.05543145,0.6715353,0.7982701,0.09402379,-0.26850462,-0.6544859,0.04540279,0.57406557,0.5196132,0.29410875,-0.13423856,-0.7182617,0.39547822,0.01262878,-0.12034474,0.75,0.21825391,0.1091056,0.2456342,-0.97265625,0.04490205,-0.13479331,0.18592437,0.2870197,0.41895264,0.26951423,0.05165155,-0.13088745,-0.1562777,0.17182982,-0.25677848,0.28515625,-0.7207031,0.058146,0.07181636,-0.0505027,0.67516446,-0.10837495,-0.2938864,0.22846997,-0.13768868,0.08789929,-0.17384388,0.04858079,-0.12507014,0.3971946,0.07077991,0.02389853,-0.1610428,-0.5119328,-0.08934525,-0.11721699,0.1938613,0.15182187,0.07320316,0.20999938,-0.3514811,-0.1176767,0.09520719,0.12159666,-0.18161047,0.1371384,0.3935697,-0.04106836,0.18300083,0.04963491,0.37695312,-0.03408241,0.173136,-0.3398146,0.27049443,-0.19092356,-0.44420475,0.5914714,-0.29200533,-0.06881507,0.09076473,0.4461339,-0.08933538,0.41056505,0.10202121,-0.00720035,-0.5625,0.03902243,-0.5320992,-0.19292898,0.03404003,0.70989585,-0.234814,-0.25183788,0.7949219,-0.22164671,0.27744496,0.18502934,-0.31253138,0.05836102,-0.31924197,0.09326472,1.0234375,0.31050214,-0.15379202,0.17920381,-0.78125,0.37702405,0.02936278,0.288024,-0.7145433,-0.21429995,-0.7957589,-0.03119225,0.09716354,-0.06466211,-0.5370101,-0.11499715,-0.07596615,0.08272541,0.34769034,0.49727035,-0.271489,0.34065253,0.11694423,0.27837113,-0.10208327,-0.05701837,0.35050613,0.01812186,0.17375611,-0.49920887,0.17870043,-0.36711928,0.69921875,-0.6579368,-0.02233091,-0.0766429,0.5288578,0.47050533,0.34970954,0.19482094,0.5054348,0.35740674,0.3543123,0.1103892,0.23779623,-0.28414658,-0.05776438,0.19096264,0.08743408,-0.07153375,-0.4295356,-0.0651896,-0.05289587,0.07984525,0.12846892,0.38749668,-0.46670386,-0.21338765,-0.27453187,-0.03810987,0.09591635,-0.44584185,0.28011775,-0.3660341,-0.91796875},{-0.51401657,0.23142402,0.23584785,0.18705189,-0.17718288,0.02092754,0.2607674,0.17270976,0.33806014,0.06186247,0.04589606,-0.19097432,0.11324073,0.4589595,-0.00945063,0.3671144,0.06952906,0.13477252,-0.25876155,-0.05751717,0.19288504,-0.07274657,0.01918276,0.44974378,-0.40740246,-0.27248695,0.08255441,0.01571576,0.48860013,-0.28128907,-0.14060004,-0.01512915,0.06472644,0.56002605,0.08571646,-0.32241586,-0.05637676,-0.2425811,0.04614154,0.23476063,0.04639503,0.36121875,0.38858238,0.08254166,0.25287127,0.39095667,-0.00949841,-0.01261521,0.3270296,0.12746686,-0.20603278,0.0397853,-0.10837651,-0.52361506,0.24510244,-0.4020419,-0.3857572,0.02479507,-0.01029411,-0.04159209,0.45134494,0.34471744,0.53978586,0.13371354,-0.35328585,-0.25195312,-0.66015625,-0.36986497,-0.02907419,0.12033271,0.1928435,0.46404108,-0.42157453,-0.17818826,0.0588009,-0.13085197,0.69433594,0.16401242,0.06252852,-0.2646445,-0.03933365,0.396138,-0.32432902,0.503136,-0.24017857,-0.29305127,0.10200983,0.7569444,-0.0445618,0.5570313,0.3602166,-0.34097758,-0.24925333,-0.04495738,-0.23436858,-0.19577831,0.8420759,-0.05001351,0.38958192,0.00897854,-0.22106291,0.16504055,0.45827696,-0.04792549,0.09592804,0.12790261,-0.11772284,0.60028875,-0.03145068,0.16453025,-0.07274213,-0.12895288,0.13918631,0.38265282,0.7229004,0.04208108,0.04183451,-0.09128949,-0.50619614,0.5733613,-0.19918497,-0.51375324,0.5266703,-0.1062024,0.02940669,-0.64367676,-0.25484136,-0.01269543,0.17428531,-0.8359375,0.02182502,-0.22061735,-0.00964908,-0.0654025,0.09638727,-0.09540675,-0.24012974,-0.03647689,0.25058156,-0.43234503,0.12456671,0.21177565,-0.10667308,0.0102432,0.08718642,0.41891658,0.01457006,-0.07631957,-0.6060632,0.03905962,0.22557507,-0.4561942,-0.15480356,-0.01524393,0.45378312,-0.24921985,-0.06491398,-0.10059565,-0.05775341,-0.74088544,0.21477939,0.22990543,0.17039993,-0.18356903,-0.5002821,0.20064786,0.31339344,-0.34192216,-0.25297058,0.6868206,-0.44532686,-0.10638798,-0.0112248,-0.43318257,-0.3495303,-0.75625,-0.03708706,-0.20792088,0.05348084,0.14014696,-0.00307745,-0.03143732,-0.01116296,0.52607995,0.0781066,0.34354722,-0.33003217,0.20592219,-0.05326115,0.3135148,-0.01195832,0.17922258,0.04110939,-0.5546875,-0.26570526,0.28615564,0.41177493,0.20603037,0.17185019,-0.08980455,0.16357274,-0.1035013,-0.34768203,0.18602772,-0.05721029,0.36788365,0.27247936,-0.05566663,-0.07348742,0.2558535,-0.5822711,0.06265894,0.48052704,0.14749202,-0.31639186,0.28103867,-0.38080764,0.13231061,0.19917408,-0.97265625,-0.29093772,-0.13866647,-0.04830405,0.13227396,-0.20406845,0.05244874,0.13237229,0.12598471,0.6333008,0.10322952,0.1733551,0.21833609,-0.4001555,-0.4296875,0.18499042,-0.28513306,-0.15914372,-0.4704222,-0.12789834,-0.18894716,-0.07985936,-0.53502923,-0.2469733,-0.45901665,0.03660953,-0.08957195,-0.32802862,-0.10089685,-0.11597385,-0.11034209,-0.5328369,0.33101714,-0.01168496,0.91015625,-0.18497583,-0.34371462,0.25574082,-0.0352796,0.02774839,0.18995132,0.0746712,0.06301828,-0.13127626,-0.29685876,0.16353485,0.02314354,0.10619219,0.15572785,-0.11083158,0.03750503,0.14239685,0.03453588,0.08718631,-0.464046,0.41399366,0.17330363,-0.03976836,0.41567838,-0.12891124,0.57755333,0.02937886,0.25680518,0.03979257,0.00884816,0.00416158,0.1582368,-0.3398053,0.47551492,0.34379542,0.4647583,0.17443042,0.12185507,0.19418655,0.29200098,0.03816007,-0.24924412,-0.19540675,-0.15083669,0.05265502,0.4590407},{-0.204576865,-1.98105845e-05,0.8984375,-0.100281186,0.0844325423,0.089592807,-0.358141452,-0.209888369,-0.0377295949,0.333014935,-0.148880124,-0.0837021768,-0.0285554882,-0.108665965,-0.0922885835,0.23971045,0.00791310053,-0.094493039,-0.0912808701,0.0185675696,0.0343929827,0.116974808,-0.90625,-0.263565451,-0.00456462335,-0.871744812,0.1817846,-0.0822731405,0.453299046,0.149394572,-0.281308293,-0.16214402,-0.0185268484,0.316343606,-0.310411513,0.186304271,-0.494650126,0.420670569,-0.0973498896,-0.509114563,0.0119480286,-0.0285267048,1.09375,-0.0438522249,0.0319337025,-0.938476562,0.2168089,0.0407932699,-0.463571072,-0.204132169,0.318055987,-0.214380771,0.199329272,0.154269978,-0.182174206,0.263513327,0.0282284766,-0.0514632836,0.0511340536,-0.145070389,-0.77734375,0.947265625,-0.277360708,0.4985677,0.0265551936,0.0184061397,-0.25677219,0.132277846,-0.254835755,-0.170493752,-0.403417975,-0.0702942535,0.0536805391,-0.225977987,-0.125094205,0.0730259493,0.783203125,0.233984381,-0.378742129,-0.38652432,-0.100521706,0.324940711,-0.344764531,0.448809236,0.161169976,0.12303675,0.0427437462,0.182123408,-0.422211736,-0.0673451275,0.0737394914,0.495292455,-0.37496677,-0.625279009,-0.310511112,-0.0110064028,0.106193662,0.202543005,0.566306114,-0.521295369,0.0361879133,0.0412395447,0.754687488,-0.10352499,-0.087363258,0.274462879,-0.593076527,0.0949724391,0.490357548,0.674479187,-0.0793803707,0.802734375,-0.255972832,0.0513582006,-0.216841266,-0.365996301,-0.439434528,0.00904559717,-0.359184086,0.0549417362,0.160627618,0.387582451,-0.085461162,-0.658984363,0.434639364,0.151288062,0.517252624,0.170442984,-0.023577366,-0.32594794,-0.00448231772,-0.0524509698,0.334881753,-0.49609375,-0.323378026,0.101565532,-0.136755809,0.0691343769,0.30567652,0.351370841,0.202121079,0.574999988,-0.317332536,-0.528320312,-0.302639872,0.0285342839,-0.613511026,0.0304457638,0.0978836566,-0.20309855,-0.220590666,0.0881444961,-0.692993164,-0.0817547739,-0.513175309,0.14101617,-0.828125,0.793836832,-0.159638867,0.0569843762,-0.488349378,-0.363108903,0.0312106796,0.0880929083,-0.553591013,-0.548617005,-0.00596547779,-0.859375,-0.110852629,-0.0124679795,-0.626036346,0.0110947955,0.218216538,0.404001623,0.335598409,0.178306922,0.113766074,-0.681484401,0.42636466,-0.349683702,-0.790482938,-0.292937338,-0.18062824,-0.574311733,0.0377517901,0.455004871,-0.169493452,0.0934184417,-0.253872484,-0.0263264105,0.164020255,0.272537738,-0.247877225,-0.043434903,-0.361483812,0.373099655,-0.0129436962,-0.322316855,-0.0522098467,-0.0282250438,-0.456665039,-0.153845802,-0.00515497522,-0.488509536,-0.0725312606,-0.000735771027,0.409115374,-0.266604513,-0.111112021,0.152826756,-0.209489495,-0.181141421,0.205651045,-0.198284641,0.105907165,0.413759917,-0.104991384,-0.00737752579,0.7578125,-0.233929053,-0.615722656,-0.329917043,0.0998907462,-0.388295382,0.394597232,-0.0605306216,0.187484026,-0.717122376,-0.350469559,0.746419251,0.122314453,0.0111957062,-0.939453125,0.0159833971,-0.0321165398,0.0788230598,0.278374553,-0.298704386,0.966145813,0.129864335,0.15431717,0.241301075,0.470703125,-0.0642200932,-0.300759792,0.0685491264,0.137111574,-0.674715936,0.103749081,-0.14942041,-0.27346161,0.3125,0.0203450527,0.0114670265,0.206549257,0.100346863,-0.152365252,0.503755987,0.263592541,-0.0412349701,-0.370102614,1.0546875,-0.81640625,-0.334032685,0.0355646499,0.152311146,-0.142055169,0.0692880228,0.0649237186,-0.100574292,-0.461991847,-0.0803097337,-0.0985801145,-0.765625,0.640252948,0.0661369786,-0.776442289,-0.194839701,-0.34658277,-0.158310667,0.0170126297,0.0111661134,-0.131810427,-0.0764534399,0.176754013,-0.911458313,-0.135270372,0.388629645,-0.627130687,0.294946253,-0.262683332,-0.94140625,0.013912851,-0.0886286497,0.116646662,-0.160665572,0.345660895,-0.0394521728,0.547125876,-0.622488856},{-0.462289661,-0.209529877,0.156739935,0.0228374619,-0.00705781626,-0.0443458259,0.0930322334,-0.434445858,0.323218167,-0.0132398698,0.364130825,-0.208447516,0.332749754,0.0275284685,0.45559895,0.476471663,-0.0478482582,0.655348539,0.0109489309,-0.397338867,-0.244012922,0.318301499,0.0360974595,0.788281262,-0.0856266916,-0.239751667,0.248577356,0.160151795,-0.112026192,-0.509824812,0.39539367,0.115960352,0.548422754,-0.207502916,-0.0705529749,-0.431695491,0.185058594,-0.155730367,0.17430833,0.339870751,0.168398634,0.163035691,0.037611831,-0.279187769,0.0815267414,0.251811683,-0.0678833425,-0.0485873781,0.00259541441,0.627604187,-0.154778585,-0.00556953717,0.96875,-0.0964409634,0.0292951055,-0.203517079,-0.437357724,0.40234375,0.376094311,-0.19338116,-0.194270551,0.868489563,-0.103269033,0.837890625,-0.284094542,0.415693939,0.7734375,0.195781842,0.0629996881,-0.320408255,0.152375892,-0.255957514,0.8125,-0.665930688,-0.5078125,0.0802362636,0.221625194,-0.0873739272,0.127916425,0.342767507,0.32811439,0.149870262,0.125506714,0.010851332,-0.0603327155,0.290010959,-0.462920219,0.0146784605,0.311550885,0.147432268,0.180094406,-0.531190813,-0.162125722,0.392578125,-0.919921875,0.426540792,0.489051223,-0.491670102,0.291081905,0.0502573438,0.132336438,-0.0341925249,-0.358454227,-0.0393891558,-0.530048072,-0.0592418015,-0.101785176,-0.0776320919,0.233286023,0.370869964,-0.103244059,-0.34766385,0.0498640351,0.0128950635,0.981770813,-0.294842958,-0.227095395,-0.144480973,0.236325517,-0.386930704,0.288061738,-0.214390352,-0.246995315,0.363297135,-0.841796875,-0.141142428,-0.0444710702,-0.0854514092,-0.713485062,0.101531558,-0.605175793,-0.378091663,0.11431656,0.118852064,0.159179688,-0.355482399,0.168923542,-0.204167277,0.351420611,-0.531384706,0.416702121,0.00144983956,-0.0630562529,0.0519984737,0.305728167,0.124667302,-0.107428543,0.190433145,0.120779723,-0.380611092,0.939062476,0.0445893966,0.0379808843,0.346713364,0.0309982132,-0.0756520107,0.0273310691,0.189424798,0.0969055668,-0.606445312,-0.0481030345,0.43457824,0.159709856,0.23048234,0.0201152619,-0.471692055,0.14937979,0.469871253,0.0417893156,0.198706627,0.132250309,0.203560367,0.356391668,0.0925256833,-0.363337278,0.294790208,-0.402525425,-0.0124130351,0.381940871,0.509207606,-0.404345095,-0.0708084926,0.177182883,-0.162543207,-0.802734375,0.0573634841,0.123321243,-0.0744528025,0.467455477,0.268542975,0.4142299,0.0259234477,-0.0558012798,0.00650311122,0.144542649,0.47458297,-0.195290238,-0.00859377813,0.118414052,-0.600043416,0.0737343505,0.256888151,-0.200706199,-0.096654281,-0.39831543,-0.100551479,0.16347684,-0.0246038772,-0.0121635599,-0.400305331,0.131790265,0.458251953,-0.581878066,0.179752767,-0.230443746,-0.119584806,0.289001703,0.0608697087,0.0517362021,-0.1376881,0.179712743,-0.392555416,0.280352414,0.630126953,0.0379541479,0.126883894,-0.476711094,-0.287126034,0.721754789,0.0832304507,0.511274874,-0.0073528639,0.0644962564,0.229971781,0.126197547,0.380804509,0.609675467,-0.0952167436,0.258736223,-0.0416534767,-0.365107,-0.3203125,0.699999988,-0.644921899,0.419816881,-0.0106947888,0.0895881057,0.000407978747,-0.0588506013,0.600350201,0.290089488,-0.267609626,-0.358336419,-0.224626094,-0.140633792,-0.187490061,-0.797851562,-0.110825807,-0.331105113,-0.478223562,0.280313373,0.0841806531,-0.534598231,0.302632719,0.365117192,-0.117444605,-0.453065813,-0.597523093,0.294777185,-0.142551884,-0.432519525,-0.248666361,-0.12207555,0.661931813,-0.266812027,-0.0402824022,0.034224391,0.630208313,0.0217012372,-0.28300944,-0.141566947,-0.0315486342,0.314438581,-0.120345518,-1.0390625,-0.197233304,0.121374622,0.896484375,0.0150478277,0.152821049,-0.379861742,1.1015625,-0.3337816,-0.00585673889,0.0591976754,-0.0368929468,0.155287266,-0.276412815,0.122573793,0.24613069},{0.41751477,0.18164267,0.35535577,-0.14068656,0.5254794,-0.29979968,0.27140674,0.19593373,0.14895244,0.55081844,0.12059409,-0.55397075,0.31916878,0.16404091,0.488444,0.05593342,0.07861328,0.5955636,-0.5683594,-1.09375,-0.20013076,-0.060643,0.44426534,0.06243001,-0.29588202,-0.42196533,-0.55214536,-0.3717272,0.15629789,-0.49115443,-0.18550356,0.18704006,-0.05817924,-0.44808322,-0.07738986,-0.03257646,-0.06186259,-0.11882797,-0.42819214,-0.2181754,0.20455217,0.40037677,0.2304152,0.6007255,0.09233048,-0.00311953,-0.6760254,-0.4054988,-0.1630249,0.4227589,0.18655372,0.07637648,0.4559295,0.82421875,0.4470163,0.1479537,0.17240514,-0.11272813,-0.7367188,-0.11209567,-0.12887737,-0.5122932,-0.01089568,-0.1288998,-0.06783507,0.30858123,-0.5021819,0.43583098,-0.01682558,0.9322917,0.3749305,-0.6934743,-0.3056987,0.04907036,-0.13475437,0.62369794,-0.79752606,-0.17627025,-0.50020343,0.47547743,0.21773529,0.56702304,0.15867643,0.22892694,0.87109375,-0.21530475,0.5001698,0.93098956,0.17131917,0.02775141,-0.2666236,0.3595179,0.5856771,0.03201661,0.10933489,-0.01729407,-0.35532925,0.43379813,-0.06371865,-0.09984926,-0.23043041,0.24974929,0.63183594,0.42593488,-0.15715712,-0.04518997,0.41878635,0.80833334,-0.093211,-0.1846003,0.71972656,-0.21288213,0.21193293,0.5547505,0.47767678,-0.18061778,0.22063562,0.09737074,-0.23526484,-0.09275278,-0.39568192,0.2823405,-0.3867092,0.15385298,0.7730263,-0.06139428,-0.4473836,-0.51004463,0.09988577,0.38878098,-0.15381818,-0.23327912,0.63064235,0.05053411,0.6188616,0.16161978,-0.11322005,-0.11882494,0.09321015,-0.29105717,0.7890625,0.45233154,-0.21388169,0.12421187,0.27745512,0.77269346,0.45419607,-0.51135254,-0.19191086,-0.3690898,0.5177167,0.3689837,-0.02963694,0.17280827,-0.2225813,-0.34074828,-0.21239711,0.03855772,-0.49133614,0.22947839,-0.06787485,0.06183726,-0.48651594,0.14112271,0.06127543,0.17379957,0.08176938,0.03490232,-0.26262623,-0.49138328,-0.20749089,0.08838363,-0.36225587,0.1932386,-0.19525172,-0.48404947,-0.671875,-0.4043597,0.04233528,-0.2861176,-0.20262444,-0.04416398,0.25299364,-0.325256,0.02657215,-0.03836459,0.23487315,-0.50290585,0.0227174,-0.06157609,-0.25014865,-0.15136302,-0.18306291,-0.12276482,0.1747668,0.02917936,-0.127456,-0.10880832,0.21431108,0.07353625,-0.20939432,0.24759632,0.0148148,0.06462416,0.5775799,-0.15963404,0.07519484,-0.27824128,-0.32716206,0.477947,0.1475372,-0.13722686,-0.85286456,-0.02678617,0.01956734,0.09184472,0.02790385,-0.02892984,0.08005494,-0.08028128,0.22704157,0.11257754,0.05322216,0.3689769,-0.2859269,0.97265625,-0.14606264,0.04235879,-0.14987497,0.19246866,-0.355232,-0.1782582,0.35854545,-0.05212466,-0.20142916,0.24119888,0.36515686,-0.23134495,-0.7734375,-0.6378676,0.17281616,-0.28321543,-0.37988946,0.24123925,0.32127428,0.0303497,-0.01843197,-0.08070736,0.12462322,-0.15817532,0.07398285,0.26750854,-0.65909094,0.0730047,-0.00145329,-0.03992376,0.17130949,0.6140625,0.2075669,-0.02763839,-0.00561015,0.49096966,0.22859964,-0.18654361,0.24880248,0.09378864,0.09665921,-0.01991506,0.24168602,-0.00672361,-0.3729253,0.00754006,0.23289621,-0.37187883,-0.3696546,0.6724609,-0.37785456,0.3398339,0.02950165,0.44916788,-0.06419771,0.24613965,0.46663707,-0.02299676,0.22069791,0.11986811,-0.4041603,0.16789842,-0.8222656,0.10475978,-0.31157485,0.4218032,0.23283905,-0.35223296,-0.00634861,-0.21184896,-0.17721966,-0.02439892,0.10569019,0.5296285},{0.264584959,0.10446205,0.172365278,0.208510742,0.337703347,0.322345674,0.188461721,-0.0940159485,0.13822715,0.617264092,-0.0183554646,0.320825189,0.300941646,-0.00155246106,-0.38085264,0.0244586356,-0.0191659871,0.151330978,0.62890625,-0.0471302383,0.802556813,0.594773054,-0.404943019,-0.38680461,-0.540581584,-0.969726562,-0.16893959,-0.553819418,-0.209384814,-0.0329522528,0.0560367368,0.437718898,0.0379246064,0.423568875,0.133220077,0.142049775,0.485369653,0.106651716,0.144548088,-0.84765625,-0.124311745,-0.103052363,0.457885742,0.51722759,-0.0053686765,-0.478453279,0.433511525,-0.0645035058,-0.0564129241,-0.393871754,0.0930429399,0.0161332674,-0.0303205382,0.0459022261,0.362399459,0.0523832366,0.405155063,0.756510437,-0.0913187414,-0.323307842,-0.106189109,-0.111756556,-0.502394676,-0.0956830978,-0.0586100072,-0.0510208681,0.518229187,0.486376554,0.413929343,0.141593814,0.023653049,0.27043432,0.021311678,-0.458681792,-0.186503515,0.0234245081,-0.137705386,-0.0408261158,0.472745031,-0.54675293,0.464880615,0.086690031,0.642857134,0.277430743,0.595272779,0.533110142,-0.181180164,0.114260837,1.00390625,-0.151799694,-0.377009392,-0.332007557,0.344748259,0.142085075,-0.351750076,0.146406159,0.622618139,-0.241193801,0.134698749,0.259850532,0.0920767114,0.0891211107,-0.666015625,-0.320186049,-0.0517297424,-0.737500012,0.11253015,0.107163571,0.188971296,-0.0184274465,0.118582591,-0.225516364,-0.0538900495,-0.0101370541,0.144561902,0.150929213,-0.238707438,-0.0725125745,-0.688616097,0.170876175,0.821614563,0.601023734,-0.699999988,-0.386609495,-0.509164691,-0.419619441,-0.467722028,0.29004994,-0.226126492,0.354432642,-0.274382234,0.38566801,0.460128337,0.37415722,0.350319594,-0.282245219,-0.326171875,-0.536528707,0.166517302,0.646484375,0.527060688,-0.315425813,-0.555016458,0.28125,0.33218807,-0.184545726,0.122310154,-0.0181797668,-0.181644306,-0.574470758,0.747496009,-0.391537756,-0.314424247,-0.8671875,0.78125,0.121769831,0.418097526,-0.515283227,-0.000318198639,-0.365264416,0.0120003279,-0.0832910538,-0.263473928,-0.454092592,0.362965584,0.375892162,-0.369333535,-0.180639312,0.237369582,-0.103985824,-0.0775931701,0.443960339,-0.256752402,0.321101785,-0.0202108491,0.0133689884,0.293047041,0.554408491,0.326857865,0.115937434,-0.285125345,-0.17280066,0.132371098,-0.403946787,-0.175292969,0.266594321,-0.713020861,-0.359375,-0.238709748,0.658288062,0.30843538,-0.201174796,-0.277314156,0.0754690617,0.658777595,-0.0997262448,-0.00707711838,-0.587348104,0.277212501,-1.109375,0.190921292,-0.0149920452,-0.114945441,0.0907960832,0.435046077,-0.0170290153,-0.29092899,0.470625013,0.5625,-0.502782285,0.2908189,0.0161607955,0.0942224637,-0.476920128,-0.542812526,-0.132803127,-0.0557900779,-0.117959514,0.0610139556,0.461744219,-0.200095534,-0.0105622513,0.196303785,-0.0975998417,-0.815755188,-0.225131273,0.163099796,-0.454704136,-0.0593538918,-0.343867779,0.27253443,-0.110614218,0.098631449,-0.768229187,-0.269598812,0.00768090272,-0.248453528,0.283080518,0.249295294,-0.249231324,0.248834178,-0.43834272,0.268498659,-0.136235252,-0.0536934771,-0.316261858,-0.0245257244,0.2549043,0.291106701,0.251419783,0.199195832,0.201191291,-0.217227966,-0.580468774,0.612423778,0.7421875,-0.0527681112,0.135317042,-0.543303549,0.466604769,0.00903532468,0.766406238,0.0888581648,0.00857836101,0.111073114,0.413994491,-0.264643669,-0.0451725349,0.507401288,-0.250203729,-0.223644361,-0.0569207631,-0.39510417,0.0372725129,-0.119151741,0.0401699543,-0.0892840251,0.0417377688,0.193909422,0.461673081,-0.268478543,0.335879475,0.939453125,0.58638823,0.321293861,-0.744977653,0.157317236,0.695507824,-0.174328566,0.386796862,-0.184574679,0.235832885,-0.000180863251,0.136225775,0.568536937,0.137199342,-0.121081345,0.0351326913,0.399410069,0.0818033516},{0.515483797,-0.407240331,-0.0226265173,-0.311353207,0.0305996258,-0.190338254,-0.317370027,-0.0859554708,0.285160631,0.354427576,-0.0747367069,0.077137664,0.280004263,0.349581599,-0.0184396319,0.26171875,-0.0681796521,0.107906274,0.119631059,-0.0635005906,-0.102256037,0.000143236626,0.626714945,0.335879773,0.00146509055,-0.0582216084,-0.186530173,0.175796047,0.142062753,0.16739738,-0.250656366,-0.181157649,0.0849340037,0.531123996,0.410268307,-0.0438207388,-0.00286949635,-0.406509578,-0.160208642,0.179121733,0.105753146,-0.465860993,-0.248887166,-0.91796875,-0.122620404,-0.307629108,-0.35645628,0.0857258365,-0.118649743,0.0788568556,-0.351507217,-0.873535156,0.0238688067,0.363149792,-0.74609375,0.0644853339,-0.00481695496,-0.132821798,-0.130461797,0.194158047,-0.566034198,0.41498965,-0.169893101,0.0861587822,0.229452938,0.155250341,-0.0269025303,0.462311924,-0.458935946,0.858984351,0.319315404,-0.170853913,-0.0607310198,-0.190390736,0.0149991019,-0.0568998866,0.00681541255,-0.861607134,-0.541015625,-0.659016907,-0.205538765,0.0604156516,-0.105958253,-0.000156608585,0.280231714,-0.105988584,-0.00343299261,0.560451627,0.278317392,0.211914062,0.119578801,0.307463527,-1.0859375,0.0812652111,-0.379650295,-0.457857579,0.462908864,-0.315422714,-0.42305547,-0.474531263,0.21291858,0.0790891647,0.0469848514,0.612760425,-0.0808520988,-0.00950670335,-0.405426025,-0.203193769,0.283110112,-0.8984375,-0.159660086,-0.0514929779,-0.00457142852,0.270529032,0.268623143,0.096176967,0.341682643,0.210434347,-0.0284953173,-0.0441922061,0.219278887,-0.280135393,-0.0768905655,-0.419086963,0.185095504,0.0964282304,-0.244630486,-0.094517298,0.407182187,0.174812198,0.6484375,-0.0973722264,-0.0423906036,-0.248816058,-0.0769285485,-0.604166687,0.238774464,-0.392599583,-0.117414199,-0.342724115,0.075879693,0.394213855,-0.0342416801,-0.60305059,-0.230565533,0.434456289,0.131804302,-0.326256782,0.204570517,-0.794140637,-0.207549676,-0.049591314,-0.19137682,0.388709426,0.198201075,0.230541885,0.10039866,-0.277248234,-0.260649294,0.437057287,-0.322199404,-0.026149448,0.77458638,-0.505601406,-0.236787304,-0.0835278481,-0.327214807,0.512825549,0.0259591565,0.118705273,0.271441162,0.13960202,-0.377729356,-0.0639435872,-0.696506083,-0.323337734,-0.148897201,0.131785378,0.365972579,0.0642154887,-0.430514097,0.202594459,-0.115209132,0.0472819768,-0.273553908,0.19142583,0.172467306,-0.605650425,-0.0160204209,0.573759198,0.221088111,0.445942551,-0.290007561,-0.447741985,0.0490155257,-0.204520553,0.0215473752,0.0966681689,0.534960926,0.147915944,-0.189941406,0.316395253,-0.0974004865,-0.148902819,-0.464422494,-0.982421875,0.199228182,-0.557164609,-0.374171197,0.323280632,0.279382259,0.271558464,-0.0504077822,-0.456680685,-0.566461265,-0.203081802,-0.0710096732,-0.270461321,0.288940936,0.178690299,-0.218738094,0.346730024,0.318380982,-0.0712556764,0.0521119051,0.561444283,-0.627527595,-0.896093726,-0.112982258,-0.250568092,-0.0761840269,-0.100813463,0.275275409,0.0742399544,-0.784179688,0.153732941,0.231014594,0.0971886292,0.339927465,0.00188232667,-0.318519473,0.146940857,-0.452651501,-0.3028391,-0.083265461,0.607271612,0.236682042,0.29297176,-0.332024693,0.359986097,-0.3447465,-0.166426912,-0.0598889738,0.407114506,-0.536099136,-0.59325695,0.94921875,-0.38076362,0.12792787,0.255808145,-0.1845925,0.0580771528,-0.45587799,0.0449709073,0.335857779,0.206571281,-0.239374414,0.176313624,-0.404468924,-0.0172889121,-0.397520721,0.657794356,-0.215289682,0.312329948,0.398491114,-0.0173098501,-0.0198493153,0.435238481,0.13582018,0.554403961,0.52360028,-0.119176105,0.155303687,0.330123812,0.240232348,-0.804931641,-0.252904356,0.327188939,0.121104918,-0.0460837372,0.0707713142,0.226531133,0.178770348,0.00871622656,0.507080078,0.719791651,0.0868405327,-0.111572266,-0.163538635,0.55078125},{-0.06590678,-0.42639002,0.10352624,0.1298689,-0.44224182,0.05937124,-0.02519563,-0.33980075,0.01407898,0.01100247,-0.09032809,-0.3251652,-0.26867363,-0.49641928,-0.35336187,-0.3337836,0.05182228,0.19335671,-0.24870054,0.48447266,0.359331,0.33209157,0.01184344,-0.04415894,0.17194083,-0.31152046,0.04822835,0.5553144,0.57632214,0.02025359,-0.75,-0.09351373,0.7792969,0.33021393,-0.34169596,-0.21924081,0.01350673,0.3612827,0.31145424,0.02631621,0.18106697,-0.68326825,0.12418076,-0.2508793,-0.21526228,-0.18902937,0.17225675,0.18159197,-0.48442876,0.35051146,0.69433594,-0.38174942,0.1621898,-0.11010456,0.16062945,-0.05758336,-0.32614195,0.0489667,-0.94921875,0.08280192,-0.20215493,-0.58314735,-0.03052413,0.2608729,-0.6183036,0.24422607,0.3647329,0.03721264,0.25597426,-0.637429,-0.07686853,-0.12562214,-0.27333984,0.02816494,-0.05484976,-0.33696577,1.0078125,0.15440275,-0.15830699,-0.21667221,-0.34187037,-0.33221814,-0.43567708,0.12992136,-0.07295857,-0.32123923,-0.2732509,0.12645182,-0.33302283,0.47455865,-1.015625,-0.22021654,-0.82872593,-0.85546875,-0.02550898,-0.16499923,0.11569586,-0.03517549,-0.10621736,-0.24883142,-0.04295262,-0.6123047,-0.20079948,0.28124246,0.24512652,0.3311714,-0.13963434,0.01810689,-0.08543583,0.04127851,-0.61169434,-0.29885575,0.46372175,0.42460936,0.5476867,-0.08033451,0.5847039,-0.30664548,-0.03869558,0.12738037,0.24653052,0.15372261,-0.09790253,-0.11814734,-0.07544173,-0.30358177,-0.6802202,0.39918065,-0.10820054,0.16504079,0.08473708,0.11869801,0.24227037,0.02435221,0.54036456,0.38867188,-0.03991677,0.02193033,-0.10665202,-0.04712004,0.2646236,-0.05019531,-0.12555568,-0.04771958,0.80566406,-0.04634804,-0.16991095,0.56995004,-0.02465518,-0.02693767,0.11812766,0.20941478,-0.9638672,-0.35529825,-0.08252542,0.18024947,0.10942204,-0.49134615,-0.38669235,-0.13572553,-0.38486207,0.2910052,-0.190837,0.540603,-0.21639442,-0.05495068,-0.05668831,0.34065306,0.1133654,-0.23868646,0.15378381,-0.07179967,-0.30956498,0.14251925,0.05910413,-0.19581078,0.20019075,-0.23051322,-0.5080236,0.18834741,-0.0628867,0.42377603,0.5686384,-0.42834118,-0.37605858,0.08840269,0.3261511,0.8847656,0.04450907,-0.11339833,0.46945226,-0.07538904,-0.50356525,-0.5998884,0.32025638,-0.14748429,0.00466463,0.50795203,-0.2269541,-0.3155091,-0.11208244,0.12256966,0.21859875,0.2734706,-0.5985577,-0.53855467,0.30289406,-0.3065573,-0.22311766,-0.02245327,0.02073633,0.34653756,-0.1660124,0.04840221,-1.1484375,0.12174049,-0.23286352,0.19090493,-0.19245085,0.09615625,0.6010045,0.1022913,0.81640625,-0.06215075,0.17821103,-0.00180208,0.2850628,0.41444722,-0.828125,0.9375,-0.28223577,-0.9453125,-0.65848213,-0.01442471,0.8720703,0.19468787,0.37968314,0.03599674,-0.37109375,0.07392588,0.6961945,-0.29492643,0.11961787,-0.23435685,-0.9003906,-0.24657138,-0.29085788,0.05388625,-0.38697916,0.2763894,-0.14838429,-0.08590841,0.28515998,0.21529098,-0.36590642,-0.03056833,-0.13478649,-0.41706082,-0.17621425,0.4059066,0.45078477,0.4140625,-0.22411554,0.09280106,0.01540482,-0.04835346,-0.40613902,-0.23680365,0.1116107,0.1392537,-0.2714945,0.11861911,0.10397632,-0.3086512,0.16693944,-0.1140506,-0.13867675,0.70241475,-0.046019,0.37803984,-0.89453125,0.16251253,-0.1596185,0.30857432,0.29491177,-0.24881697,-0.14398544,-0.0988763,0.14892907,0.23539151,-0.39942226,0.31351024,0.24995582,-0.70355904,-0.6351563,0.00968918,0.43165365,0.56074893,0.03808623,-0.1308469},{0.457695305,0.0648763627,0.39053914,0.502166986,0.304569125,-0.175650388,-0.22013092,-0.276343107,-0.180725604,-0.21006161,0.0940166488,0.301757812,-0.294780433,-0.403664976,0.253024191,-0.116922751,0.850585938,0.207517147,0.276338965,-0.489257812,-0.166545391,0.127892271,0.126962289,0.152768776,-0.017478589,-0.321236938,0.401754141,0.0358863287,-0.940429688,-0.0847579837,0.158285618,-0.581380188,-0.0986493081,-0.11474248,-0.586237967,-0.160603553,0.435500383,-0.068856813,-0.355099648,0.283126414,0.55032897,-0.184565082,0.24930495,-0.0385125428,-0.104270138,-0.61531049,-0.159132272,-0.163547501,0.0264060609,0.365349263,0.0853879079,-0.509785771,-0.0617005974,0.103191078,-0.0628856495,0.25199002,0.202578202,0.518037677,0.0846907422,-0.819754481,-0.887369812,-0.75390625,-0.231869906,-0.228053138,0.289049298,-0.0449363515,0.0866819918,0.281118512,-0.269477367,0.243627444,0.0512774587,0.0800872669,0.034646865,0.193209141,-0.0117724575,-0.121763483,-0.0911343768,0.0700569674,-0.0531838201,0.153782248,-0.287087619,-0.0708022937,-0.207551509,-0.22893554,0.00660166191,-0.0589528605,-0.128354281,-0.587239563,-0.231514409,-0.217682734,-0.310586035,-0.169439241,-0.612605155,0.670200884,-0.650520861,-0.128397033,0.173378989,0.132809788,0.531392932,0.110911541,-0.0813378766,-0.124189436,0.185569584,-0.17681706,-0.0132211382,-0.428561807,0.440452039,-0.193941489,-0.0081906449,0.0540761016,-0.488560259,0.25296551,-0.357900947,-0.262609303,0.0812977478,-0.104285464,-0.0949973464,0.611914039,-0.113741674,-0.406992197,-0.041691009,0.0243049003,-0.553854167,-0.393585026,0.00680886023,0.228023827,-0.0874127224,-0.582248271,0.51953125,-0.527418852,-0.016889235,0.0381828733,-0.588089943,0.07392288,0.0233022291,-0.0536497198,0.103037581,0.325017065,-0.0258420501,0.899181545,0.650240362,-0.173347846,0.11351493,0.447940081,-0.0133072808,0.347682476,0.340997875,-0.155186459,0.0800430849,-0.513392866,-0.0287962779,-0.0369508751,0.425218999,-0.0207649767,0.21973294,-0.0107738916,-0.0153772486,-0.402203232,0.169366106,-0.380625665,0.151377663,-0.000453027576,-0.177728891,0.0615002811,0.342735499,-0.000296158076,0.0983656645,-0.434765637,-0.0233471487,0.105380878,-0.58586514,-0.143504605,-0.703559041,0.115989856,0.141026169,0.130409867,0.175784692,-0.213860303,-0.200684622,-0.045387499,0.323388278,-0.098112084,0.188461065,-0.309709072,0.215240821,-0.526776731,-0.361545146,-0.193409398,-0.0624306761,0.383948863,0.00466502924,-0.0934647247,0.338915229,-0.324303657,0.341703862,1.078125,0.542590737,0.105268069,-0.459241927,0.13722229,-0.34460339,0.143514127,-0.226116225,-0.408003598,0.0357913822,0.0464286432,-0.147835419,-0.0632598251,-0.710658491,0.63396138,0.116522513,-0.0600518994,-0.326207489,0.705193043,-0.260809541,-0.519021749,-0.00550817652,0.000272214413,0.411888868,-0.424002022,0.763671875,0.214354575,0.0876960382,0.0170616284,0.636888564,0.286136955,-0.108882003,-0.376953125,-0.476289064,-0.482070327,-0.082054995,0.126446411,-0.515559912,0.176759779,-0.0766822323,0.118464366,-0.403021365,0.204557672,0.644133985,-0.304764748,0.139688149,-0.589693487,0.76171875,0.4189215,0.301746309,-0.209497988,-0.573879063,0.212346971,0.0178157631,0.444544047,-0.724459112,0.023209542,-0.104222961,0.295992792,0.15134488,-0.370980322,0.225228593,0.0628432482,-0.285107702,-0.231525153,-0.0925622508,-0.177703679,-0.239708334,0.148898244,0.119368382,-0.463103682,-0.0131967096,-0.410164535,-0.238688335,0.445229381,0.253846467,0.388678044,-0.165526554,0.779017866,0.0193001386,-0.337737292,-0.0578308441,0.00952523202,0.540509284,-0.198633507,-0.19140856,0.0986400768,0.0275581796,-0.0849333927,-0.463429421,-0.308545023,-0.274430186,-0.0238627028,0.22650899,0.0603007264,-0.113014206,0.203593507,-0.464035034,0.277300715,-0.27250579,-0.111514233,-0.143891335,0.642968774,0.0684157908,-0.180518553},{0.15522215,-0.37677717,-0.14881496,0.07929687,-0.04071711,-0.28614193,0.33012122,-0.32726666,0.2437244,0.14939052,0.4905599,-0.3731473,0.04599809,0.377895,0.02744854,-0.66276044,0.41965652,-0.26056215,-0.04554187,0.04643476,0.06763718,0.00659614,-0.3387474,-0.13669719,0.28516284,0.12039335,-0.3214247,-0.01431468,0.6888951,-0.03907475,-0.15284167,-0.31642509,-0.43733197,0.24509713,0.12437163,0.2663455,0.13573915,-0.2202211,0.166518,-0.10934398,0.44344428,-0.24511094,0.05721884,0.37598142,0.31816503,-0.2645858,0.08642995,-0.03601762,-0.40718588,0.28121138,0.21386719,-0.6743608,0.04304035,-0.16549522,0.0654017,-0.27826768,0.25382677,-0.035891,-0.02641144,0.6970486,-0.04397589,0.08421804,-0.39950466,0.02527888,-0.2577074,-0.37104815,-0.03199407,0.35151654,0.19538346,0.40162286,-0.02854279,0.68821025,0.00468662,0.1420213,-0.65596277,-0.37207428,0.15624626,0.47073624,-0.33790508,0.5471048,-0.23193091,-0.3132606,0.03404135,0.9117187,-0.17333141,-0.14694464,-0.08418155,-0.4796317,-0.28714323,-0.59877235,-0.34872064,0.07278685,0.15963365,-0.457268,-0.22274072,-0.03465588,-0.06517556,-0.15185316,0.05007506,-0.456029,-0.03641804,0.13239129,-0.16989385,-0.06958248,0.54992676,-0.6476089,0.2529811,0.00936227,0.34749773,-0.11281815,-0.18695854,-0.14639091,0.39553088,0.45892188,0.18260214,-0.04553283,0.1293605,0.25146323,-0.06936999,-0.02505673,-0.3389788,-0.04115815,-0.4382841,-0.63341343,0.40141407,-0.07588857,-0.01229172,-0.04489449,0.24613185,-0.03497314,-0.54737467,0.44701892,-0.19484654,0.15670758,0.27989098,0.43429047,-0.29188493,-0.01072569,-0.3865138,0.46955147,-0.03431937,-0.52302194,-0.08129552,-0.69947916,-0.3837683,0.00410402,0.0917682,0.00125326,0.16300508,-0.24971043,0.40034097,0.5911458,-0.20064977,0.786801,-0.04002961,-0.02718836,-0.58636475,0.24460402,0.06492732,-0.30280703,-0.2899775,0.00566539,0.2977833,-0.02551983,0.25006872,-0.17233665,0.03127633,0.05100458,-0.44321576,0.5657703,-0.05214928,-0.1909367,-0.12482475,-0.03967237,0.44709036,-0.06544485,-0.13226014,-0.14940123,0.20847377,0.05333591,-0.34773478,0.11009658,-0.12417854,0.15820892,0.26652017,-0.08667278,0.35552326,0.7256434,0.14702417,-0.24514903,-0.43751478,-0.50795203,-0.05022794,-0.01009583,0.26460937,-0.08175056,0.11206055,0.08618409,0.32221255,-0.4467544,-0.02000986,-0.36177886,-0.3652632,-0.0401584,-0.18849796,0.400984,-0.07378951,0.09717831,-0.11766931,0.3563939,-0.09432031,-0.46578544,-0.04088725,-0.27921134,0.59265625,0.01931164,0.3562593,-0.5776367,0.14794831,-0.04989392,0.23543294,-0.1581904,0.11449382,-0.35334474,-0.64242786,0.3251407,-0.03392763,-0.3145271,-0.28426847,-0.26865146,-0.09692646,0.60754395,-0.11427232,0.20851497,-0.594308,0.05394415,0.49612403,-0.07688186,-0.02892184,0.03064655,-0.21354802,-0.80078125,-0.06713832,0.1626,-0.09200866,-0.2597944,-0.73197114,0.20366526,0.1529485,0.31644848,1.0,0.47449777,0.0498998,0.17920402,0.37589183,-0.513916,0.12060547,-0.53348213,-0.4617957,0.16748963,-0.20264062,-0.4054769,0.3269969,-0.12745027,-0.3008921,-0.61328125,-0.16508278,-0.42552328,-0.1259531,-0.7068015,0.12143487,-0.17137751,-0.6184211,-0.03005828,0.44900727,-0.02545615,-0.5330357,-0.6448317,0.06588776,0.1850687,0.32235646,-0.2411267,0.55046695,0.6460937,0.16752435,-0.4774858,0.25008696,0.1030125,-0.04822515,-0.32132393,0.3613084,-0.11497708,-0.0873893,-0.17138895,0.08053998,0.11802445,-0.0099631,-0.32410312,-0.02873953,0.44406298},{0.19099689,-0.04425394,-0.09919655,0.92522323,-0.45786265,0.19822472,-0.00650469,-0.16650449,0.86216515,0.6503452,0.01500711,0.5413411,0.7203125,0.01778352,-0.39252207,0.2172144,-0.14498486,-0.14522809,-0.44352922,-0.12085023,-0.12483459,0.24032761,-0.361287,-0.05443938,-0.21630965,0.15046477,-0.5294271,0.40818495,0.24521214,0.00195548,0.4838591,0.07546183,0.10548054,0.16109571,-0.3917005,-0.24364029,-0.53355825,0.11929493,-0.21919362,0.06249296,0.3563965,0.2439916,-0.26734886,0.14359236,-0.14060801,-0.49326262,0.06040039,-0.6442308,0.42261463,0.23973122,-0.30568963,-0.14987156,-0.22358662,0.23981024,0.19775984,-0.01037962,-0.2598784,-0.10522249,-0.23621471,-0.07573356,0.20403531,0.48341653,0.23157817,0.38903952,0.5599235,-0.20015363,-0.22221391,0.24313171,-0.52759576,-0.21679443,0.33109522,-0.29301357,-0.22039191,0.09988116,-0.04216219,-0.1445394,-0.52337646,-0.04794583,-0.06350885,0.2537787,0.05667261,0.2221456,0.01680949,0.24928156,-0.25581715,0.256781,0.06157871,1.0859375,-0.10448142,0.34667554,-0.4228715,-0.09253335,-0.22846968,0.31228542,-0.00112712,0.03073202,0.40616348,0.23361059,-0.73214287,0.21772346,0.18457825,-0.11742205,0.19136177,-0.16266097,-0.02588032,-0.57274073,-0.35162583,0.05517191,0.02287398,0.11574968,-0.11033805,0.29686546,0.5253906,-0.01792878,-0.3164836,-0.68470985,-0.05017535,-0.34955096,-0.19644952,-0.26264882,-0.57001203,0.73046875,-0.04486882,-0.5852482,0.14596881,0.02059736,-0.0295503,0.31046548,0.12112576,0.02673633,-0.17628014,0.04808011,0.42635027,0.953125,-0.38189974,-0.03974844,0.5763114,0.01302616,-0.0969859,0.4129642,-0.75,0.24183118,-0.33487514,0.47541118,-0.1396942,0.09494316,-0.00857453,0.29100126,0.01942152,0.19326063,-0.397583,-0.13379392,0.06130371,0.16109756,-0.25945503,-0.5626085,-0.2968599,0.2138468,-0.40336955,-0.32811013,0.54541016,0.16746382,0.284191,-0.07342035,-0.3213248,0.44949776,0.4713739,-0.21281207,-0.0459742,-0.07905531,-0.28022894,0.29871204,-0.21053885,-0.6373698,-0.15330376,-0.40706834,0.08544074,-0.85546875,-0.2578125,0.08757688,-0.7331913,-0.30651265,0.26652643,-0.02524265,0.75716144,0.28129426,0.02659911,-0.13573036,0.12505972,-0.2783203,-0.02019873,0.6349159,0.48281816,-0.23489201,0.10377704,-0.09179688,0.7766927,0.02149108,-0.29783443,0.04158357,0.376878,-0.3242016,-0.7332031,-0.1718471,-0.56354165,0.00608944,-0.05065693,0.17094319,-0.05968894,-0.21441388,-0.18262061,0.00308959,0.01071213,-0.03296134,-0.38461262,0.05903092,-0.15284768,-0.04368009,0.5081597,-0.15959172,0.03195736,0.02048842,0.36211264,0.4551479,0.02866698,0.16749209,0.21581088,-0.17282681,0.5649933,0.14008261,0.00314112,0.16795906,-0.10669125,-0.02264871,0.13666959,0.35953775,0.05909947,-0.3944776,0.372103,0.3337726,0.41695076,0.56425107,0.0410211,0.3531862,-0.00209599,0.20995583,-0.23398438,0.24365234,0.16192363,-0.79758525,0.08690866,-0.0028461,0.18652512,0.58978546,0.12305666,-0.23584498,0.13472773,0.20941955,-0.13035934,-0.3779297,-0.01539409,0.15276396,0.07301843,-0.07151093,-0.24787608,-0.01576625,-0.00192377,0.19240479,-0.35349485,-0.33884364,-0.32811883,0.6292373,0.68359375,-0.03646128,-0.17001334,0.07391294,-0.59390944,-0.09815699,-0.41600177,0.6184476,-0.05794767,-0.38394743,-0.08247362,0.04163138,-0.02226132,0.00481873,0.26072302,0.40725836,-0.13083394,0.18455341,-0.5622439,-0.09472248,-0.63390625,-0.03051184,0.17584847,-0.46723092,-0.08620223,0.19237177,-0.33283475,-0.25214756},{-0.4130949,0.5376189,-0.22897679,-0.29593307,0.44296876,-0.31231868,-0.12234049,-0.66471356,0.23390372,0.16210938,0.14641821,0.11521941,0.13228033,-0.12060923,-0.33389136,0.5097842,-0.00779705,-0.27845094,-0.11330902,0.05983103,0.1288669,0.27163962,-0.72998047,0.06835055,-0.64317256,-0.20848373,0.04190958,-0.9921875,-0.36589864,-0.15572113,-0.38768703,0.54436386,-0.16018692,-0.37796456,0.04058822,0.4674183,-0.01083968,-0.2704444,0.530489,-0.28506678,0.19589587,0.00503676,-0.3132679,-0.18453985,-0.11448225,-0.52734375,-0.0183707,0.44787744,0.49009103,-0.6822917,0.04417024,-0.33705103,-0.29004532,-0.20217162,0.3115899,-0.01851949,-0.01809196,-0.19187336,0.5756392,0.05335654,0.01498299,0.05561449,0.07101249,-0.9296875,0.36456442,0.51446366,0.43171722,0.00633316,-0.66191405,0.31056696,0.17778234,-0.04575222,-0.2850902,-0.380791,-0.00263299,0.43882307,-0.17665654,0.57208806,-0.44338474,-0.08179244,0.6826172,-0.2128418,0.10590019,0.0326669,0.5642428,-0.1934022,-0.2851789,0.03976816,0.24361902,0.010219,-0.13039055,0.37897602,-0.18164375,-0.12993741,0.18844867,0.03673743,0.07326233,-0.05725869,0.16698316,0.1269324,0.42535043,0.35337856,-0.3893596,0.10958359,-0.51171875,0.3790916,-0.06934611,0.953125,-0.3302028,0.25200555,-0.28034857,0.07885571,0.15080932,-0.41357422,0.05445497,-0.0133386,0.40888757,0.2216353,-0.0011202,0.4769394,-0.07572971,0.17481196,-0.45484957,0.6703125,0.05332134,-0.0551816,0.4183134,0.00478337,0.3641059,-0.01883321,0.11788455,0.0820006,0.20990321,-0.00727901,0.07810079,-0.41587272,-0.08101992,0.03748063,-0.22405134,-0.03842818,0.11843539,-0.34861904,0.46547964,0.09716624,0.03054226,-0.15482458,0.1962087,0.7836914,0.30644134,0.3612351,0.43359375,-0.4082955,0.27416992,-0.46931705,0.26858807,0.10719108,-0.55878663,0.32434964,-0.76,-0.10156014,-0.23877865,-0.1526889,0.09843234,0.27540687,0.00903296,-0.40033966,0.5584613,0.10965243,0.36126983,0.13233475,0.02662392,-0.00633535,-0.5803786,0.03465049,-0.63496095,-0.27039564,0.5567399,-0.19144738,0.2568934,-0.5118621,-0.5970293,-0.5004203,0.07008339,-0.38089576,0.20513439,-0.24358985,0.10962131,-0.04212361,0.00330813,0.09835917,-0.18019125,0.11624034,0.14992532,0.10204055,-0.05394364,0.3184211,0.16997172,0.01585957,-0.16697231,0.3280646,0.09692238,-0.27162606,0.03502333,0.00279929,0.16695191,0.5752604,-0.7685547,0.21130064,-0.38852945,0.55200195,0.3377303,-0.32390118,0.12000385,-0.17674387,-0.0886815,-0.6017485,0.12647879,0.25386602,0.06961475,-0.03820086,-0.15960383,0.48043564,-0.32845458,-0.04292787,0.28320312,0.23048542,-0.2841193,-0.10867541,-0.04517835,-0.60647684,0.0751717,-0.27924693,-0.14256687,0.21724594,0.24215756,-0.23933002,-0.23228374,-0.44641757,0.10182402,0.39164555,0.09743612,-0.02673126,-0.19529036,0.21387042,-0.03772451,0.01364044,0.20853767,-0.19475996,-0.5346967,-0.24509105,0.4885098,-0.57789963,-0.23242553,0.41994864,0.18794277,-0.09134059,0.73133683,0.00959698,0.4020738,0.17667852,0.1552984,0.4535055,0.20607145,-0.39244187,-0.01399119,0.0148899,-0.08955862,-0.11085127,0.07906038,0.06861219,-0.03878778,-0.28294665,-0.45007813,-0.28326336,0.12226787,0.19375902,-0.12458451,-0.1558032,-0.05847149,0.00358925,-0.35550007,-0.10089674,-0.01187395,0.10231579,-0.22618611,-0.66341144,-0.01989407,0.07541412,-0.15234375,0.05327942,0.47944972,0.26353514,-0.06984718,0.14117874,0.01762471,0.5358073,0.4490167,0.04600661,-0.06488752,0.07348099},{0.359209329,0.0588564314,-0.0761403516,0.431783527,0.0771296844,0.0288856607,0.0206777714,-0.592701972,-0.000761797128,-0.364829451,0.209421501,-0.214396775,-0.0216197483,0.140633389,-0.21682258,0.284237385,0.275297612,-0.0841788501,-0.277402222,-0.0898355022,0.02875649,0.449277937,0.0783986673,-0.251389414,0.0899296477,-0.0226265546,-0.144497782,-0.732700884,-0.290976822,-0.376909405,0.341774285,0.0153727513,0.184597626,0.0562714934,0.620738626,0.202558711,-0.0475801378,0.564703524,-0.0345334038,0.0165974479,0.0942389593,-0.127443731,0.0776616409,-0.139613897,0.496271312,-0.640506625,-0.148431748,0.712053597,0.253763735,-0.109117769,-0.431550622,-0.0339909159,0.433455467,-0.585083008,0.174236268,0.0364806354,0.45328775,-0.232402995,-0.486852139,-0.00851268694,-0.291988313,-0.0274552125,0.0429375693,-0.258791208,-0.0485452153,-0.324258387,-0.181082413,-0.188398734,0.106660113,0.222136945,-0.779575884,0.242782891,-0.471754819,0.120622732,-0.372031242,-0.422769666,-0.235373333,0.186036035,-0.370045722,-0.12034034,0.0051839971,-0.363179117,0.28496477,0.69921875,0.0415274389,0.604789376,0.289142638,-0.678385437,0.299804688,-0.014039875,0.145538613,-0.417899609,0.6875,0.0661322922,0.40237087,-0.0927444696,-0.136694729,-0.0790977925,0.0734818801,-0.0629038215,-0.25777933,0.23732312,0.0798308477,0.822265625,0.642780185,0.186476648,0.663161039,-0.0659179688,0.127442464,0.421617031,0.309393466,0.482031256,0.175754085,0.401529938,-0.0474744849,-0.8515625,-0.457538545,-0.191422716,0.130833566,-0.222990423,-0.160638258,0.9765625,0.312707782,-0.349667102,0.0888716504,-0.0195397399,0.493332446,0.226089701,0.817057312,-0.255794674,-0.911458313,0.0542301089,0.146527722,0.52681905,-0.191868052,0.449878424,0.365311265,0.0815623701,-0.192830876,0.487237811,-0.107820116,0.0839640573,0.0707249492,0.211432397,0.14152424,-0.113554724,0.84375,0.244983733,0.143069983,-1.171875,0.303724468,0.307432443,-0.0790428668,0.00608825684,0.316577733,-0.484586149,-0.307535797,-0.265740424,0.0461898148,-0.229449123,-0.134180218,-0.240579352,0.110828303,-0.00659193052,-0.380938768,-0.313452303,0.702473938,0.302681297,0.269392967,-0.223003477,-0.471686929,0.0423509367,0.0908391699,0.622514188,0.406538725,-0.361317575,-0.180086717,0.0153947007,-0.122526333,-0.626464844,-0.334942222,-0.0231787153,-0.193375215,-0.452279896,-0.0299131349,-0.418484658,-0.253884315,-0.175243005,-0.171393484,0.0203381628,-0.322186589,0.0440076664,-0.105215974,0.189020723,0.181608543,-0.253678232,0.0742597282,-0.045812469,-0.53869915,-0.162610769,-0.485229492,0.361255109,0.0725250468,0.0293735489,0.123492002,-0.118156731,-0.0903545469,-0.0883593112,-0.0511516184,0.0779046491,0.436013937,0.362090051,0.231758773,0.00910695922,-0.143534914,-0.377851814,0.141995087,-0.680208325,-0.483321339,0.0460338853,-0.211452037,0.359326184,-0.216742888,0.58670342,-0.162024304,0.0693110153,0.307570696,-0.160657048,0.276319981,-0.111536756,0.164540425,-0.616168499,-0.175775647,-0.348599136,-0.0394972228,0.4652569,-0.176704437,0.142176375,-0.650390625,-0.0348106213,-0.0496150106,0.20204024,-0.326241642,-0.509481549,0.171846196,0.085173279,0.0248618182,-0.169755414,-0.0249069296,-0.322232515,-0.185944825,-0.23336412,0.249219194,0.0173449032,0.742745519,-0.0805367753,-0.237255499,-0.0988777876,-0.274438798,-0.0539232455,0.0595632084,-0.339003682,-0.248827294,-0.374989331,-0.236267269,0.517661214,0.328322798,0.0888503715,0.0979328975,0.208357722,-0.104229346,0.552660227,0.507265627,-0.0764415711,-0.284124821,-0.304622203,-0.513860881,0.547612011,-0.674804688,0.136722073,-0.724609375,0.0482334867,0.396531105,0.022946706,0.187027052,-0.189911783,0.196269721,-0.169916049,0.294964463,0.501953125,-0.332983285,-0.150957033,0.0380948707,-0.45161289,0.124338388,-0.0483534522,-0.825195312,-0.229921132,-0.708333313,-0.26857245},{0.571986616,0.197683692,0.529256999,-0.242707998,0.637620211,-0.336036056,-0.197696373,0.26754126,-0.532752395,-0.197156653,0.417641401,-0.252929688,0.0154635869,0.203119382,-0.398351073,0.063100785,-0.0282029528,0.432590783,0.526932538,0.129354343,0.284134835,0.916015625,-0.290955931,-0.499792218,-0.255943894,0.549422562,-0.280287653,-0.00590977864,0.285075128,-0.531555712,0.030390881,0.302758694,-0.281169564,-0.180634201,0.335132688,-0.132772565,-0.386858255,0.233882621,-0.172895834,0.0502782091,-0.0154396342,0.440464973,0.206519961,-0.160640687,-0.0546139888,-0.0624252446,0.000724830723,0.0474245436,0.408039302,0.216274366,-0.402536094,0.189025983,0.288874567,0.0625071824,-0.310554177,-0.0427204147,0.0192174539,0.172790959,-0.262704879,0.075218007,0.387642056,-0.371744782,0.19910413,-0.112771556,0.750488281,-0.309560895,0.0168919377,-0.125532925,0.640324533,0.483976781,0.072986342,-0.423801541,0.0480060615,0.0915152878,0.385995358,-0.0471017659,-0.048444733,0.451132417,-0.667410731,0.399425566,0.292916209,-0.558938444,0.112535432,-0.260835052,0.360294998,0.6875,0.0161472969,-0.197853118,0.059080787,0.0929994732,-0.115752824,-0.407147378,-0.548779309,-0.115720846,0.75390625,0.0178128351,0.004573463,-0.291027218,-0.366966397,0.28830716,-0.494461298,-0.000440350297,0.32412082,-0.276383311,-0.608642578,0.0968784988,-0.23628062,-0.0392950401,0.21475707,-0.288111925,-0.140124246,0.559344947,0.0693266392,0.295873195,-0.279395223,0.654575884,0.237683401,-0.450413108,0.139145628,0.407142371,0.0158142038,0.0543405972,-0.484539121,-0.335868955,0.000477962167,-0.133315489,-0.378967851,-0.071237132,-0.366152734,-0.267518252,-0.133786425,0.322247297,-0.0162783228,-0.09767811,0.138186529,0.0541720614,-0.00481961807,0.284265339,0.10471642,0.252871811,-1.109375,0.0523746498,0.533333361,0.0177294929,0.253862858,0.376735181,-0.399421871,-0.275237918,0.8125,0.578776062,0.204117835,-0.581575036,-0.0601041988,-0.121523499,0.0490603819,-0.238248765,-0.378963262,-0.389630347,-0.324366957,0.0166403335,-0.166467771,0.0966597348,-0.143073797,-0.479383677,0.406106651,0.303340524,-0.497042418,-0.359392524,0.566162109,0.266562253,-0.23050487,0.404320002,0.598144531,-0.0578221194,-0.0654009059,-0.183638588,-0.015611236,-0.392622739,-0.348519683,0.211003125,-0.959375024,-0.264694929,-0.91796875,0.253965825,-0.0939677507,0.00570213748,-0.0673548579,-0.161649898,-0.20899339,0.072272189,-0.200647905,-0.455049187,0.164071545,-0.184143215,-0.0992923602,-0.11665225,0.601332724,-0.51953125,0.64304316,-0.428493917,-0.127361327,0.54286319,0.181099057,0.0805487037,0.00238904217,-0.0932207182,-0.109295361,0.678125024,0.420656711,-0.105507493,-0.365204155,0.642463207,0.50003618,-0.257943124,-0.205101177,-0.286104083,-0.401028633,0.116972022,-0.110866711,0.315518469,-0.302655458,0.051531326,-0.00907468889,-0.500781238,0.578464687,0.598795593,-0.0406763107,0.0997895151,-0.739746094,0.0629378259,-0.741629481,-0.0238087159,-0.41474542,0.0386039391,-0.0912099406,-0.156691879,-0.0822628811,0.399456531,-0.0355149172,-0.283132434,0.562437475,0.0903631821,-0.497255057,-0.0807924643,0.0795551613,-0.0656645,-0.472819,-0.0214041192,-0.205564618,0.263737202,0.213277563,-0.152807534,0.321296692,-0.357421875,0.0485707894,-0.782500029,0.310527712,-0.46671316,0.502197266,0.536416352,0.179166868,0.5234375,-0.290969849,0.126457721,0.0232043341,-0.172373384,-0.132784769,0.3134574,0.329898536,0.342481941,-0.254922062,-0.410298288,-0.471471578,-0.717187524,-0.392891586,-0.736979187,-0.162581831,-0.0516425036,0.119801402,0.352497339,0.152850434,0.0636151135,0.380622894,0.109876931,0.807031274,0.13034603,-0.00803199876,0.206033811,-0.138217941,-0.0530969836,-0.861979187,-0.335687935,0.314375788,0.206538409,-0.463082463,-0.288015306,-0.0173180811,0.220713824,-0.0744176507,-0.0128903193},{-0.0329899862,0.647949219,-0.441344559,0.0158060361,-0.476369113,0.502774298,-0.291157663,-0.69770664,-0.0215210356,-0.317433327,-0.00791509077,-0.33693099,-0.0861893296,-0.0685475841,-0.0356454365,0.401302934,-0.0768923238,-0.457548261,0.402246088,0.109585501,0.0596939176,-0.588350177,0.136698678,0.119634882,-0.155704513,0.182985634,0.325175375,0.041751001,0.193830982,-0.187933102,-0.217228189,-0.054444775,-0.180208594,-0.163568854,0.459238023,-0.107656687,0.288125724,0.40532288,-0.586554289,0.0328432806,0.510009766,-0.0415233001,0.101097405,-0.0605751798,0.0611701608,-0.272366881,-0.214771003,0.28427735,-0.833984375,-0.0378415585,0.415504098,0.132825792,0.701450884,-0.0456275009,0.266669691,-0.273453265,0.0571245216,0.424001724,0.320444584,0.430326015,0.320182294,0.390538007,-0.0744780153,-0.072485052,0.429329425,-0.335906506,0.210836038,-0.0483635888,0.0136011718,-0.536295593,-0.000807298289,0.109083541,0.0134076858,-0.248344958,-0.0358041152,0.571910501,0.513671875,0.0296575669,0.311512947,-0.0160565004,-0.156711698,0.199165106,-0.240698174,-0.071774289,0.771158874,-0.0170414317,-0.385852128,0.0547390841,-0.117943697,0.38876313,-0.277269214,-0.310560316,0.182076767,0.0910317078,0.167957783,0.0534665398,0.191933379,0.0729520768,0.669719815,-0.270530939,-0.727120519,-0.296869695,0.0143208513,-0.193939984,-0.0618435629,-0.0886890367,0.343680948,0.18558836,-0.672475934,-0.472760141,-0.0639247373,0.7421875,0.299708843,-0.281345069,0.174822822,0.161085486,-0.591653943,0.0613697357,-0.454376996,-0.535290956,0.172323018,-0.559114575,-0.272496462,-0.706250012,-0.0932000577,0.288179398,-0.264678568,0.194843307,-0.040024735,0.640625,-0.239285573,-0.739955366,0.0668758303,-0.91015625,-0.134788275,0.0110064428,0.696289062,0.0521127023,0.736478388,-0.224704981,0.0458854772,0.532407403,0.0264800843,-0.263750523,-0.0355638415,0.16260539,-0.41221723,0.495211214,-0.418872178,0.141100258,-0.0812330022,0.0641709194,-0.499305546,-0.217748582,0.3543064,-0.449982047,-0.396449506,-0.355423748,0.222045392,-0.291071534,-0.0328046605,0.0732834414,0.45612067,0.00537725911,0.172791809,0.558035731,0.35920307,-0.00418359227,0.295799673,0.155709043,-0.527144432,-0.0995572582,0.535393,-0.278366327,-0.410999179,-0.160140932,-0.106990993,-0.0700733885,-0.0167632047,0.263707787,-1.0546875,-0.143989593,-0.132795811,-0.35558641,-0.00118858449,-0.0251102261,0.507486999,-0.257816136,0.189917788,0.613411486,0.0553783849,0.164017141,0.235791504,-0.517333984,0.130373791,0.252969086,-0.039305687,-0.364222944,-0.320133656,-0.13815096,0.00792822242,0.109824069,-0.177656189,0.155823126,0.798549116,0.0402871668,0.091293253,-0.0491660535,-0.31144172,0.130410567,-0.268546045,-0.0373627283,-0.197802439,-0.32521683,-0.114256702,0.109881364,0.275455743,-0.439324349,-0.445141613,0.0554427207,-0.121296741,-0.183645651,0.45703125,0.293885529,-0.178286538,0.0282864384,0.296767265,-0.151863575,-0.176763311,0.290080875,-0.123683795,-0.758463562,0.162595034,-0.450954854,-0.134732932,-0.256882727,-0.0351036228,-0.0564932488,0.0937681273,-0.348513722,0.651494563,-0.0856837705,-0.104275398,0.498111993,-0.58708638,0.148397431,0.00201020297,0.0127739944,-0.0429343879,-0.363209903,-0.204494938,-0.104970612,-0.00303760031,-0.125611544,-0.0195939522,0.331526369,0.150943518,-0.0920377672,-0.791503906,-0.1406378,0.373033762,-0.158650875,-0.3026447,-0.103523716,-0.272521436,-0.0420344248,-0.0971636698,-0.398464531,-0.365217835,-0.87109375,-0.173800573,0.0257106014,0.136225879,0.0837218985,0.309589475,0.21397382,-0.270476878,-0.0246428773,-0.451786339,0.0561888888,0.395978004,0.00347690703,-0.220578834,0.203138888,-0.257972836,-0.00916702021,0.27818647,0.374915481,0.413281262,-0.0915395021,0.244290292,-0.158185557,-0.262687355,0.125604987,0.0460303836,0.146942884,-0.0790589303,0.405780494,-0.0900686756,0.377029568},{-0.173741862,-0.478071719,0.211548522,0.0450399518,0.058811862,0.114001013,0.0539482683,-0.312402844,-0.130426183,-0.0429987386,-0.288983911,-0.0923070163,-0.0754491463,-0.0387171619,-0.597991049,-0.157749966,0.119323663,-0.224176973,-0.307575256,-0.749399066,-0.36121875,0.748535156,-0.38100031,-0.367077768,0.43829754,0.621448874,-0.209399447,0.00133389188,0.385625005,-0.589370251,-0.371041447,-0.9765625,-0.759277344,0.0849621147,-0.746372759,-0.000202486845,0.151838541,0.511008501,-0.0732371956,-0.261689246,0.593249202,-0.541259766,-0.415023565,-0.345627993,-0.743252814,-0.181162685,-0.051536072,0.509387612,0.0586534217,-0.0440857224,-0.213341624,0.0519844219,-0.0854736343,0.0964124575,-0.0839964747,-0.359375,0.0345373265,-0.532946646,0.287211508,0.365463108,0.540810049,-0.264573902,0.216216922,-0.364302427,0.137173489,0.476987094,0.296924651,-0.605096698,-0.146420836,-0.0237077679,0.498009086,0.507533491,0.562183261,-0.322265625,-0.0949751437,-0.591772139,-0.221698061,0.123719871,0.155778095,0.286196977,-0.24266772,-0.475549757,0.875,-0.039695479,-0.300627053,0.160620272,0.124823801,-0.168088585,-0.152846962,-0.0222155992,-0.494318187,-0.0573845915,-0.696093738,-0.180666,0.354519457,0.108118378,-0.333530754,-1.01171875,0.477580786,-0.775390625,0.96875,-0.0541330129,-0.11648801,-0.345776469,0.263690531,-0.106433213,-0.200204492,0.551004469,0.574846566,-0.388812214,0.0165730752,-0.328076035,-0.217716187,0.00395169668,0.0626698434,0.275502592,-0.185541689,-0.114754744,-0.328178644,-0.30066368,-0.708629251,0.349735975,-0.422707468,0.214380786,0.162621498,0.048711095,-0.0978913307,0.270472348,0.0437938832,0.083753705,0.093075566,-0.0349367671,-0.369916856,0.16403158,0.308568209,0.348653585,-0.156306386,-0.0417712815,-0.181674689,0.245170161,-0.0130814845,-0.483518004,-0.15867202,0.13624391,0.436734378,0.106990427,0.538137317,-0.121776588,-0.319244385,-0.423623741,0.181198895,0.393902868,-0.470336109,-0.593098938,0.0658902675,-0.282276124,-0.423655182,-0.147968307,-0.335892856,0.497178823,-0.34769097,0.248771295,-0.0195349585,0.117844194,-0.061328657,-0.798828125,0.238198653,-0.518942654,-0.359334439,0.34763971,0.559291303,0.564108431,0.152459294,-0.381678432,-0.13231875,0.323098272,-0.480195314,-0.188018441,-0.220217049,-0.300799489,-0.359209865,-0.707519531,-0.256903559,-0.239743218,-0.142089114,-0.725585938,-0.654296875,-0.244100079,-0.148430571,0.363340259,-0.277405679,-0.161078438,-0.948567688,0.139136404,0.0347985178,-0.226517424,-0.281152338,0.537584484,0.498017281,0.0962394029,-0.0477657467,0.191870421,0.513593733,0.323150069,-0.494848281,-0.424397796,-0.25276491,-0.105300426,-0.0186389051,-0.0407447144,-0.780222058,-0.379915357,-0.206553787,-0.208993703,-0.328177214,-0.0023435948,0.736979187,0.84375,-0.409977347,-0.388654113,0.566938937,-0.0851654783,-0.0430594012,0.558763564,0.337950259,0.178198978,-0.186990976,-0.169472948,-0.36897248,0.587149799,0.404040724,0.362304688,0.26168257,0.118454449,0.0617401153,-0.0846941024,-0.815755188,0.220290869,0.157189205,0.288069934,-0.551041663,0.430622786,-0.22022301,0.126223311,0.224138334,-0.0163025558,-0.0864257812,0.36328578,-0.149838403,0.8828125,-0.0298415814,-0.0398804434,0.0697879866,0.13865675,0.238288864,0.124550745,0.0930629522,0.348632812,-0.117917262,-0.0746750608,-0.131801471,-0.167973831,0.109377876,-0.00489747245,0.2274414,-0.542773426,-0.418006808,-0.272395819,0.186489999,0.162615061,-0.0275278073,-0.457346261,-0.258868009,0.621186733,-0.0763976574,-0.200082242,-0.400284648,-0.446134865,-0.161096588,-0.663574219,0.250134826,0.425904423,-0.124128714,-0.176351801,0.0475769043,0.179991275,0.484877229,0.0448996201,0.283192158,-0.133814901,0.188447714,0.0712431446,-0.379744947,-0.191399634,-0.764648438,0.593623996,-0.185161158,0.326305926,0.315381646,-0.542613626},{-0.304564148,0.0291190147,0.130879268,-0.319325864,0.066639334,-0.722900391,0.197758973,-0.152803957,-0.101764843,-0.80078125,-0.187058702,0.0531552136,-0.166051865,0.100548856,0.131377295,0.495086193,0.0584674031,-0.19376047,0.563281238,0.450150937,0.181142107,-0.799153626,-0.0968692452,0.104489103,0.46360293,0.221047997,-0.706597209,0.189430207,0.262668699,0.301859856,0.162601352,0.178261638,-0.153344631,-0.252907604,0.0171044134,-0.0669237673,-0.83203125,-0.862304688,0.0403252132,0.753255188,0.272467613,-0.413968861,-0.752604187,0.477436274,0.257651359,-0.773124993,0.0543301404,0.539180875,0.086407274,0.248755962,-0.123047508,0.427636027,0.0824722573,0.447910339,-0.238234371,0.0815719068,-0.337817699,-0.297856182,0.630468726,-0.249207169,0.731249988,0.266702086,-0.0487184599,0.166406631,0.00374119263,-0.546261132,-0.233356357,0.221121073,0.0467273444,0.193296254,0.276376814,-0.318260372,-0.112294994,0.375042915,-0.295823574,0.338920444,-0.254913479,-0.0326628722,0.146499902,0.123083897,-0.0326754749,0.472734362,-0.0705680698,-0.264634281,-0.0101619177,0.0903192163,0.0031075296,0.26171875,0.00678100577,0.177688152,0.275626898,-0.0651815459,-0.358427733,-0.311596215,0.0365893133,-0.100101329,0.1543345,-0.32915777,0.0549375191,-0.4198879,0.298854619,0.0118889185,-0.12345162,-0.440139353,-0.271520764,-0.167491555,0.0247935764,-0.100813687,0.37489444,-0.550551474,0.0229578484,-0.552619457,0.00773662981,0.11790853,0.13280496,-0.00704193115,-0.302598298,-0.397213668,0.347597867,0.241702512,0.522964001,0.0151721463,-0.59717989,0.500036836,-0.211458057,-0.179127023,0.107737422,0.347620428,-0.412484974,0.540807843,0.127833366,0.492745548,0.0824955553,0.407210201,0.115744852,0.126445398,0.263613582,0.122328646,-0.487336874,-0.368683517,-0.201176822,0.0690005198,-0.356420517,-0.145066723,0.188013449,0.283092558,-0.208525419,-0.0252233017,-0.483378232,-0.595184922,0.0920338556,-0.964285731,-0.119640335,0.320379704,-0.462444812,-0.91796875,-0.0501063466,-0.126237363,-0.168941811,0.126673892,0.342631906,0.00872007478,0.138612792,0.304586589,0.0403106362,-0.231388018,-0.0202139877,0.116630748,0.121276096,0.507900298,-0.772135437,-0.131884411,0.0785851479,0.00107280258,-0.0424898788,0.165567219,-0.52734375,-0.107917652,-0.276367188,0.199631214,-0.273346364,-0.225107417,-0.155836225,0.352375001,-0.185066238,0.0208773483,0.338642567,-0.152841613,-0.629150391,0.158700407,-1.1015625,-0.391262949,0.0939569995,0.592097342,0.284214437,-0.033787515,-0.293949544,-0.214970648,-0.152289838,0.0189902056,0.959635437,0.373168319,-0.117909081,-0.311570376,-0.0082506137,0.116182812,0.332039565,-0.000133249792,0.0664382577,0.0331754014,-0.540878534,-0.0279883873,-0.254901588,-0.0778476596,0.283099055,-0.186057821,0.181617096,-0.0162075888,-0.575334847,0.0185896922,0.0654541776,0.0279722884,0.126930341,-0.27242136,-0.216754198,0.0346733332,-0.421484381,-0.102024272,0.366989851,-0.0168164801,0.548906267,0.416792423,-0.0144154271,-0.0320630185,0.459960938,-0.196776479,0.219761953,-0.049734205,0.139176309,0.0433458313,-0.00528526539,0.364184111,0.0681574121,-0.570588231,-0.770089269,-0.0988425389,-0.0373515934,0.155709058,-0.0497824326,0.204560399,-1.0859375,-0.780970991,-0.30680117,-0.245713457,-0.299633443,0.0516787544,0.0391196795,0.183066964,0.478732646,-0.11180111,0.139126033,-0.0881325379,0.354655832,-0.543260276,0.217813954,0.403197438,-0.0825443938,-0.736505687,0.0344364941,-0.519353688,0.216770113,0.0749517307,0.449863285,-0.0128745399,0.0057672495,-0.208981633,0.271391362,-0.127392069,0.0352805033,-0.0517059192,-0.787597656,0.0396666005,0.0805998445,-0.706250012,-0.352478772,-0.562138915,-0.53246671,-0.033566568,-0.0302910414,0.336892664,0.230471894,-0.0388252288,0.6875,0.431503296,-0.349536687,0.182714671,-0.154710814,-0.0964571238,0.143570185,0.482164472},{0.115771756,-0.186090752,0.292844236,0.443205982,0.269374222,-0.0538425036,0.110389724,0.446388125,0.222632006,0.170381919,-0.178207219,-0.262733638,-0.256799966,-0.264667839,-0.0812667385,0.179672852,0.372981042,0.0654176772,0.606770813,0.289030999,-0.0719841644,-0.0788226351,-0.143027276,0.129912883,-0.50943023,-0.611628592,0.207460344,-0.223665491,-0.572765291,-0.17919454,-0.234904319,0.112343326,0.0295536518,0.183054447,-0.157711029,-0.29780364,0.176233053,-0.281153947,-0.0226050802,0.294915557,0.458007812,-0.496814311,0.187074736,0.242178738,0.0744965076,-0.173837572,0.358407408,-0.386051834,0.202156097,-0.241757452,0.259850532,0.00307480479,-0.143125847,-0.318165451,0.42211175,0.234362438,-0.206074819,-0.463876575,-0.144013301,-0.0265428834,0.12890844,0.184076354,-0.0021425467,-0.560546875,0.0407653227,-0.678059876,-0.386615545,0.386656076,0.0345339775,0.0110911373,-0.131294087,-0.200186357,-0.104971863,-0.0888397545,-0.393540442,-0.208565086,0.186099231,0.00617326144,-0.143018603,-0.9453125,-0.0233104806,0.168496415,-0.300787926,0.0204531159,0.0617347993,0.367205083,-0.308573335,0.245062932,0.0776267797,-0.745312512,0.135156244,0.110598899,-0.590091765,-0.411111116,-0.207468361,0.0961778238,-0.109880827,-0.8984375,0.11762204,-0.576562524,-0.099136509,-0.160179973,-0.179187134,-0.626850307,0.0155952778,-0.150864467,0.00332408934,0.275390625,-0.0238993112,-0.423935771,-0.023797404,0.660615802,0.0318613835,0.630126953,-0.177238256,-0.534555316,0.322062939,0.3758789,0.335928172,-0.105176382,-0.127453685,-0.318464935,0.220641449,-0.0445345379,0.117730357,0.0688995272,0.0561677143,0.0237734634,0.299685419,-0.370093644,0.0661770776,0.289038956,0.00262044603,0.447247535,0.0367507413,0.036872521,-0.196128994,0.452892482,0.0092260344,0.0698292702,0.100618064,0.153104305,-0.114785895,-0.374886066,-0.173298433,0.233389989,0.250229567,-0.551682711,-0.228988156,-0.313469678,0.11181815,-0.311647624,-0.376953125,0.0908192322,0.11788322,-0.367099375,0.587594688,-0.0485604629,0.337541848,0.196256325,-0.527480841,0.729090095,0.0901141316,-0.199113742,0.109330043,-0.0395036899,0.231426716,0.00671224296,0.00867740903,-0.200179607,-0.30870679,0.7109375,0.721354187,-0.150821462,-0.258764595,-0.540900707,-0.0918144658,-0.51953125,-0.244165137,-0.597265601,0.507401288,-0.422795057,0.098864302,0.119621962,-0.197280556,-0.0100407638,-0.343768507,0.411862433,-0.53125,-0.263704151,0.259710342,0.0129049215,0.279142678,0.0837497637,-0.6875,0.188992485,0.233895198,-0.0258104354,-0.192354992,-0.000124753788,0.20807527,0.103811674,-0.185095549,0.25764975,-0.252917171,0.25197807,-0.173360988,-0.136236951,-0.288016409,0.0469047725,-0.278349221,0.00870420132,0.8984375,-0.0848842561,0.192181617,-0.0510398597,-0.479334086,0.661389828,0.235771507,0.38825798,-0.579716444,-0.0537025593,0.42887488,-0.422718406,0.217775121,0.295893222,0.081294544,0.556565523,-0.0306361578,0.174231455,0.298836887,0.02806025,-0.539394975,-0.485212058,-0.106158815,0.165134698,0.16452311,0.104695641,-0.079387635,0.173823565,0.317442298,0.0974196866,0.108395673,-0.472605288,0.028593488,-0.359352291,-0.0101247784,0.493028998,0.0150348684,-0.06665764,0.411254883,-0.144025818,-0.133681744,-0.631975472,0.813565314,0.455729157,-0.294858873,0.0384740382,0.283257365,0.361635894,-0.668749988,0.140115276,0.0652178526,0.0240989551,-0.0318680182,0.722486436,-0.248819411,-0.0659438744,0.0168721545,-0.155836254,-0.0119318198,0.266622692,-0.234322861,-0.431640625,-0.638950884,0.0584341474,0.233840391,-0.171952799,-0.135738567,-0.0243320595,-0.454306513,0.353219688,0.36614117,-0.437922835,-0.313196778,-0.33785063,-0.477551132,0.00211459841,-0.237176418,-0.236681461,0.728124976,0.0837129205,0.265510112,-0.0976909027,0.314565808,0.209977746,-0.217754617,0.265660048,0.347550482,-0.149379358},{0.336887091,0.284084976,-0.31259945,0.552780867,0.254941463,-0.431574404,0.308730811,-0.0196620319,0.0209842734,0.42178151,-0.340990812,0.0693488121,-0.735491097,0.483340979,-0.435449839,0.226624146,-0.153808594,0.241743207,0.0793175027,0.151792198,0.202066109,-0.347689182,-0.279230028,0.022203099,-0.33405143,-0.0895881355,-0.0927503631,0.124449693,-0.135267317,-0.0492874607,0.0927392393,-0.244530171,-0.221604913,0.19959642,0.348695159,0.327182114,0.301829606,0.318188787,0.759232938,-0.1913829,0.346679688,-0.0355081446,0.175286651,0.419770658,0.215378344,0.237804592,-0.127934709,0.0991670862,0.0361550301,0.11673855,-0.451965898,-0.0781488046,-0.249611333,0.291041106,0.407031238,-0.0246560089,-0.241283819,-0.398465395,-0.359514505,-0.258766353,0.302734375,-0.00890308246,0.371828139,0.14695622,-0.403457761,0.224498406,-0.173270777,-0.0124940304,-0.615993917,0.156315401,0.406347245,0.116967075,-0.194343314,-0.274392992,-0.703710914,-0.887369812,0.354544073,0.145013571,-0.230437353,0.58617425,0.126951143,-0.203157112,0.401133358,-0.630022347,0.186919197,0.0344521813,-0.296938241,-0.17918019,0.186946616,-0.31053552,-0.609102488,0.0544263907,0.0286338981,-0.477844238,-0.247044206,-0.318279028,0.286144584,0.0851427093,0.374001741,0.0871269405,-0.650390625,0.300963789,-0.419850856,0.345788032,-0.306699038,-0.331008196,-0.275323689,0.0854424536,0.0569313914,0.317524701,0.0691190287,0.151262686,-0.735677063,0.3125,0.094658196,0.202583,0.740885437,-0.28518486,0.0698137358,-0.018984165,-0.119361125,-0.19385913,0.447833806,-0.0252311919,-0.293055236,-0.355592221,-0.103286766,0.0173773151,0.0703436956,-0.293088675,-0.568652332,0.187989205,-0.5234375,0.0603256449,-0.0401796624,-0.030008899,0.000257460837,-0.239793047,-0.0882139653,0.0329362229,-0.237668499,-0.0991242006,-0.0700510219,0.26261282,0.134301752,-0.00661821477,-0.0333697945,0.339947104,0.221712127,0.259692937,0.00526069617,0.415131569,-0.42956695,-0.311553031,0.209058076,-0.662527919,0.386648357,0.29869017,-1.09375,-0.0357559733,-0.0832621157,0.201626331,0.724964499,-0.294892818,0.281195521,-0.131854787,0.345882505,-0.323281705,-0.159168229,-0.210346743,-0.550352514,0.598749995,-0.0240613222,-0.8046875,0.277427167,0.234381706,0.646484375,-0.740167022,0.312398165,-0.00952043012,-0.140607372,-0.0803039819,-0.470557362,0.0912888944,-0.0396679007,0.166470766,-0.295027614,-0.419238955,0.0895817429,-0.0868540853,0.6484375,0.803710938,-0.00976661686,-0.0855279565,0.250600278,0.17137827,0.0393111967,-0.2734375,-0.264651686,0.156824663,-0.412220359,0.223179415,0.0573632307,-0.424483001,-0.364019752,-0.452325404,0.0159600675,0.0267188288,-0.108129852,-0.0815257505,-0.630450606,-0.51171875,-0.769252241,0.262755811,-0.044845067,-0.0353185721,0.263760418,0.306713492,0.0184087139,0.207921982,0.158615544,-0.114023708,0.330102235,-0.0157527011,-0.368327916,0.454607487,-0.450380743,-0.426395535,-0.487571031,0.353682488,0.192899823,-0.00183452945,-0.437731296,0.126491874,-0.159144521,0.540771484,0.207067043,-0.408165574,-0.00264227064,-0.380550981,0.179716319,0.00286613638,0.205092698,-0.242601976,-0.267528057,0.387586802,0.0825657696,0.0374662429,0.20661366,-0.396559924,0.0153063415,0.158689454,-0.196209162,0.045871973,-0.420978487,-0.869531274,-0.257628471,-0.0717797056,-0.310465246,0.0175027363,0.0671268031,-0.0352371372,-0.0417043939,-0.279296875,0.515561998,-0.403360993,-0.104521342,-0.262735039,-0.311436564,0.572010875,0.0908610821,-0.0238596443,0.277248472,-0.412023515,0.112991475,0.116445646,0.671875,0.155709341,0.225962415,0.403311819,0.0834620148,-0.282191694,0.411087602,0.285309285,-0.27830115,-0.117654018,-0.115909494,0.138676912,-0.0890927464,-0.0149953496,-0.27056849,-0.0468988717,-0.0622097738,-0.111910835,0.0664284155,-0.533420146,0.28125,-0.139185742,-0.350524485,-0.575026929},{0.3760057,-0.35818407,-0.34953424,0.23092628,-0.19820589,-0.48571908,-0.06909797,0.06595465,-0.45714393,0.74553573,0.15815717,-0.14646912,-0.5403892,0.4081875,-0.06645015,0.09497707,0.15967852,0.07104705,-0.05479025,0.23012604,0.5390205,-0.2704914,0.23691985,-0.10326439,-0.4414277,0.05561632,-0.05162005,0.2172632,0.11866403,-0.11569801,-0.16652709,0.41434833,-0.3612896,0.61269534,0.18641268,0.09911715,0.63458806,0.13570863,-0.01313145,-0.3065485,0.1225125,0.9082031,-0.00125229,-0.63305664,0.28719077,0.17028166,0.4671975,0.6167763,0.21289062,0.29304183,-0.09252579,-0.04298203,0.12128975,0.3429602,0.34771994,-0.05127704,-0.59727824,0.23345782,0.4111965,0.22024128,0.23046587,0.25290215,-0.192946,-0.4963157,0.07500785,0.0259863,0.11136987,0.10696889,-0.25883833,0.44993833,-0.08649831,0.06546105,-0.04284045,0.03409012,0.51060265,0.16500671,-0.91015625,-0.13765432,-0.02631375,0.5236545,0.11035539,-0.43101057,-0.14695242,-0.44545585,0.11570827,-0.1786537,-0.22651511,0.49319473,-0.36213568,0.2851739,-0.1071585,-0.5098783,0.30359274,-0.294807,0.14010675,-0.17384674,0.5309393,0.10521926,-0.54584706,-0.83632815,0.4443469,-0.04225858,0.5932617,-0.26668057,0.29100955,-0.4501403,0.17475697,-0.07396759,0.09961253,0.08201167,0.5490302,0.04934079,-0.1655431,0.7832031,-0.29373446,0.22751534,0.26962033,0.10780578,0.24721083,0.78776044,-0.42077935,0.04274424,-0.5037157,-0.03880246,-0.45681015,0.1342802,-0.7109375,-0.35784233,-0.2066786,-0.05641235,-0.2645564,0.41620836,-0.0951952,0.11205556,0.2950767,0.8154297,0.03070907,0.43188995,0.27840552,0.33987772,-0.16688308,0.0593021,-0.40828803,0.65844727,-0.02440494,-0.09055865,0.20958142,0.01162992,-0.08735173,-0.33600506,0.44534707,-0.33112094,-0.0659229,0.11690649,0.2793536,-0.12556618,0.14695737,-0.815625,-0.14702258,-0.14359668,0.3282593,0.5852364,0.36741832,0.16454501,-0.07813679,0.61154515,-0.1709099,-0.18890017,-0.1850131,0.06371809,-0.12231544,-0.27547202,-0.15034395,-0.10474677,-0.24877435,0.07590902,-0.33860844,-0.08227918,-0.36124638,-0.05397812,-0.17572153,-0.59292763,0.02209732,-0.00740675,-0.45100203,-0.04516764,-0.00451826,0.33613053,0.03212114,-0.03955158,0.1747603,-0.21282339,-0.41398737,-0.40738636,0.01983558,0.07810216,0.07929993,0.21879326,0.41824776,-0.14593203,0.5892969,0.3476338,0.09154365,0.35046774,-0.13865997,-0.22304285,0.4840931,-0.20269649,0.12991704,-0.13815016,0.07028715,0.13226059,0.16250809,0.03744514,-0.02882933,0.19090529,0.21193731,0.56531614,-0.24880666,-0.75923294,-0.10644867,0.00758956,0.03856914,0.10176253,-0.35265976,0.02285823,-0.31861606,0.13331921,0.26468942,-0.5095741,-0.17045455,1.109375,-0.04784698,0.18800227,0.4441479,0.01459438,-0.25959986,0.02344513,0.6128567,-0.4392502,-0.43328303,-0.05159127,-0.04941889,-0.22605483,0.13087733,-0.11403383,0.09738219,0.04380745,-0.703404,-0.03758059,-0.00966924,-0.27930894,0.52955484,0.06444465,0.35837704,-0.01750654,-0.18062477,-0.11816509,0.09619019,0.12350243,0.32225174,-0.19429386,0.24889342,-0.3106373,-0.00699538,0.62917566,-0.55047685,-0.6894055,-0.06837711,-0.07322812,0.03562667,-0.22003555,-0.08297956,0.10287006,0.2647061,-0.248839,0.00561596,-0.0401238,-0.3318855,0.33293268,0.22601837,0.4991035,-0.20803413,-0.460074,-0.09078897,0.05248398,0.33981386,0.6058408,0.59328127,0.09767121,0.03538579,0.46365017,-0.04086243,0.06397092,-0.36721474,-0.5646913,-0.34756324,0.1212303,-0.04262569,0.28022295},{-0.15185632,0.46160284,-0.6123798,0.3975007,-0.36117342,-0.52296686,-0.01405252,-0.12183639,0.1894167,-0.05005361,0.26759616,0.00212017,-0.30859375,0.05336803,0.09492113,0.5622496,0.23535156,-0.333849,-0.06016532,-0.35156876,0.04284918,0.29296875,-0.17332031,-0.40145597,0.7199219,0.28111213,-0.228975,0.26469815,-0.34758437,-0.26462153,0.2415649,-0.43439004,0.11374296,0.45492357,-0.46850035,0.2828876,0.29785156,-0.2929829,0.28320312,0.23094493,0.28217024,-0.3963333,0.49841103,-0.11359425,0.22360602,0.29090536,0.1293314,-0.2275555,0.3435958,0.4967758,-0.6359545,0.6418269,-0.31826434,-0.99609375,-0.17235936,0.5308949,0.21441382,-0.47940943,0.03795506,-0.09008789,-0.21724759,0.46289062,-0.65283203,0.210871,0.12833112,-0.23343378,0.39242187,-0.2538406,0.11423159,0.20011817,0.2114491,-0.37976694,-0.18263265,-0.06663314,-0.36028025,0.79296875,0.20615445,-0.51373625,-0.10568958,-0.03846136,-0.00152022,-0.41502064,0.07466008,0.31446257,-0.15772438,0.3993164,-0.19088148,0.33978775,0.01313234,-0.45598957,-0.02017764,-0.1299021,-0.38577458,-0.28306815,0.01152819,-0.00282231,0.07883953,-0.25869048,-0.01003459,-0.17626014,0.15622136,-0.21577056,0.26656052,0.00212778,-0.03172319,0.12110827,-0.21010016,0.40630007,-0.21177222,-0.00392318,-0.04066882,0.26379064,0.5543574,-0.14702798,0.25195312,0.56640625,-0.2483488,-0.210509,0.35926276,0.8535156,0.42732206,-0.1563091,-0.33110076,-0.08961976,0.01633208,0.47486255,0.13081396,0.1186417,-0.28716385,0.32028404,0.21485202,-0.22496162,-0.05894546,0.14204656,-0.07081721,-0.19825226,0.05493997,0.4157253,-0.1317871,0.3633322,0.18163916,0.42794666,0.08713028,-0.11110618,-0.04414311,0.86621094,0.38064533,0.40714574,-0.36620522,-0.08690806,-0.27917606,-0.28614554,-0.27438208,0.0230577,0.5832332,-0.05237226,-0.19476268,-0.11805761,-0.43799445,-0.24555756,0.03915969,0.14793314,0.2568034,0.34954464,-0.04009406,-0.11643555,0.19973153,0.06387939,0.31370848,0.42858976,-0.19971476,-0.6611328,0.16936883,0.0722847,-0.31731653,0.19385608,0.13769138,-0.3720159,-0.5349392,-0.7190104,0.0312482,0.17129119,0.15575327,0.18600817,-0.42550224,-0.07367672,-0.78571427,-0.0199673,0.2587441,0.7410301,0.3602269,-0.18167877,-0.09715984,0.22997785,-0.18557075,-0.12430494,0.29684612,0.0590037,0.10134821,0.35611978,-0.15524168,0.21240234,0.11344331,-0.27830666,0.7297794,0.2928673,0.57448816,-0.3242796,-0.24595071,0.20399983,-0.4150324,-0.24367602,-0.35541055,-0.60081846,0.2549923,-0.09521214,-0.09503283,-0.21478397,-0.07494175,0.60714287,0.11623655,0.06257444,-0.3555849,0.3134101,-0.19177666,0.35543144,0.10107759,0.624814,0.44732714,0.44162703,0.26274565,-0.32718292,0.6558949,0.16554418,-0.04637946,-0.20554148,0.6725544,-0.27637464,-0.19899145,-0.36438382,0.5862856,-0.6126302,-0.13623576,-0.49037388,-0.01023046,0.3466979,-0.35245863,-0.25023556,-0.28421587,0.18400396,0.00146751,-0.37314454,-0.08765879,-0.16891785,0.34635842,-0.12186146,-0.43049273,-0.43169892,0.22452843,0.00260542,-0.27813506,0.88671875,-0.07912304,0.06519206,0.17916882,-0.18660036,-0.22855611,0.03667511,-0.1493437,-0.5601042,-0.5736909,0.0471589,0.11359819,-0.25577706,0.2528461,-0.3992684,-0.41496155,-0.24278584,-0.14744179,0.0722945,-0.01071676,0.57070315,0.35248452,0.07080927,0.19581641,0.06500085,-0.08936418,0.0155046,0.17624672,0.09053835,-0.09249152,-0.16939573,-0.01211575,-0.03644011,0.09324449,0.19241431,0.16511713,0.12797038,0.09204357,0.8151042},{0.0520914942,0.599839151,0.565340936,-0.00964297727,-0.832682312,0.528771043,0.546239078,0.327947438,-0.430687875,0.0344028771,-0.254926533,-0.854166687,0.393606097,0.628038168,-0.240742192,-0.0904891491,-0.0853920355,0.398617983,-0.147949845,-0.320360363,-0.230876997,-0.206466228,0.00486890227,0.0163897444,0.298878759,-0.0298370682,-0.0463750102,0.581590235,-0.536406279,-0.0586084537,-0.125759736,-0.353285313,-0.171377137,-0.555053711,0.563534021,-0.25390625,-0.367167354,-0.25580436,-0.449479163,-0.370282054,-0.103788488,-0.139559567,-0.512319684,0.288125694,-0.027525574,0.437914312,0.314201593,0.312372625,-0.525213063,-0.22906062,-0.276322365,0.308615059,-0.300682187,-0.0893826559,-0.362329483,0.438440382,-0.011506998,-0.0993743688,-0.0993270054,-0.13766484,-0.0642392337,0.284056634,0.182550192,0.156109571,-0.145978004,-0.584960938,0.187441602,-0.292880714,-0.299804688,-0.336654961,0.452041835,-0.799479187,0.323299021,-0.537154794,-0.0746249408,-0.154302523,0.0329485349,-0.336921036,-0.255748481,-0.29307431,-0.568576396,-0.248240322,0.268639356,0.607700884,0.294953167,0.643503308,-0.243534684,0.716610849,-0.274427831,-0.362689406,0.0319585353,-0.262742996,-0.0561500825,-0.253930002,0.150446698,0.0230721179,-0.176762536,0.318386316,-0.287065387,-0.26658389,0.706473231,0.152784482,0.15527682,0.533258915,0.190013275,-0.475313783,0.320327073,0.368276566,0.00322800898,0.0900809765,0.225499973,0.0100398446,-0.424853504,-0.455437899,-0.0011037743,0.0275507011,0.629774332,0.875,0.391551733,-0.0317894369,0.200613037,0.125081226,-0.357528806,0.627467096,-0.708333313,-0.574719548,-0.114264019,0.190857142,-0.149887249,0.118596472,-0.0475953668,0.0237505082,0.161065206,-0.105161555,-0.523572206,0.183572888,-0.705078125,0.0951469913,-0.436370492,0.166568354,0.398533255,-0.186948985,0.411087394,-0.559053302,-0.36322546,-0.427133411,-0.0483048633,-0.09301202,-0.220765859,-0.192865431,0.350583136,-0.341770232,-1.234375,0.0397767387,0.189036846,0.374080896,0.158097893,-0.408455133,-0.3515625,0.0364818908,0.310604334,0.34280166,-0.168388188,-0.212374032,-0.0517635718,0.0673940778,0.00409509707,-0.0456685536,-0.104937911,0.012314369,0.455047131,-0.0245652199,0.229973689,0.435466826,0.150383562,-0.0591706447,1.0078125,-0.174832776,0.283157706,-0.0869252607,-0.00919931289,0.244809881,0.348519266,0.472478688,0.153740495,-0.499852031,-0.21725747,-0.266643733,0.0512553714,-0.12252301,0.448221833,0.0654245764,-0.0431131124,0.361069947,-0.250265002,-0.643066406,0.322309524,0.311600536,-0.651424646,0.37101686,-0.0121299922,-0.146431997,0.0808163881,-0.129399851,0.246619344,0.48655349,-0.242667899,0.545200884,-0.0996272713,0.439256012,0.0631925985,0.408039004,-0.436523438,0.137662753,0.167031243,-0.176761031,-0.123735733,0.232858211,0.223187417,0.162626266,0.0457732305,0.252927452,-0.890625,-0.315703601,0.235408559,-0.130832613,0.479696572,-0.349627972,0.142055213,0.0079142591,0.0832782164,0.728236616,0.0258980785,0.422131985,-0.018098155,-0.966796875,0.539197206,-0.310393244,0.0991374105,0.505539775,-0.0624073371,-0.17534779,0.214374334,0.135292336,-0.420572907,-0.281194657,-0.0929970518,-0.480342746,0.140060857,-0.422856718,-0.260710925,0.0451076776,0.0961376354,0.360425532,-0.499294698,0.0133927176,-0.211825594,-0.842285156,-0.231516868,0.330840886,-0.304805279,0.16743888,-0.493270427,-0.322166502,-0.288941771,-0.355097651,0.0531828366,-0.441362351,0.365825683,-0.0589808263,0.334994614,0.276350856,-0.771484375,-0.177694082,0.173853159,-0.286120743,-0.328175426,0.0361519717,-0.111258373,-0.134842649,0.156699181,-0.0918232277,0.13969703,-0.890625,0.282269597,0.101037234,-0.0683691204,0.3515881,-0.183099076,0.407232344,-0.695507824,0.167424843,0.102944411,-0.289141893,-0.543203115,0.298770458,0.58182013,0.202507541,-0.457885742,0.7734375},{-0.096418947,-0.175761983,0.766601562,-0.499511719,-0.0810794458,0.228972003,0.345677644,0.209855273,-0.172292575,-0.122828923,-0.224602491,0.6484375,-0.118111089,0.278299004,0.0683488771,0.35441941,-0.164538041,-0.298681647,-0.80078125,-0.258832574,-0.210010707,0.0869051516,-0.0726913884,0.277484089,-0.0326062255,-0.136716381,-0.151377842,0.422721356,-0.412781984,0.263647854,-0.175275803,-0.302787006,0.0445290506,-0.0696023852,-0.36627987,0.0513943397,-0.633680582,-0.204617932,0.705295146,0.527280748,0.262666345,-0.234315321,0.129918575,0.0669100732,-0.0893118382,0.0629101247,0.0454210825,-0.297870457,-0.920572937,0.984375,-0.0671522617,0.00923735648,-0.0756015033,-0.236818939,-0.94140625,0.339737833,-0.412174493,0.0149495704,-0.371950746,-0.237867549,0.511528194,0.378782451,-0.622632563,0.448264897,0.0206994116,-0.39935714,-0.474694282,0.157681927,-0.035517998,0.0428242795,0.00625229906,-0.240305498,-0.0121059064,-0.442446977,-0.857617199,-0.406235039,-0.422743052,-0.449125737,0.189457893,0.733984351,0.0752230883,-0.143031746,0.594184041,-0.148915246,-0.0191769972,0.0744532719,0.302833527,-0.0385752507,-0.178192243,0.446387827,-0.0574659482,0.259737194,-0.0262460038,0.00643953448,-0.277383506,-0.12049149,0.0996278077,-0.639914751,0.9140625,-0.0487257726,-0.313298404,-0.325108379,0.0195987448,-0.215790167,0.331870407,0.163599238,-0.337069154,-0.765625,-0.166423529,-0.320171744,-0.23974295,-0.0278447066,-0.837890625,0.478665859,0.0869134516,0.212854341,-0.401352406,-0.039932806,0.165037408,0.665900707,-0.546875,-0.2967498,-0.84375,-0.437160313,0.654815078,0.328226447,0.689453125,0.081246905,-0.0498239771,-0.430749387,0.225745976,0.17759487,-0.254933625,-0.180654079,-0.110093266,-0.253929049,-0.00748871686,-0.228905857,0.0355506316,0.560714304,0.455993116,0.136645511,0.577812493,0.325163811,-0.45378989,0.547455132,0.62890625,0.173330605,0.376624882,-0.46767512,0.0702836141,0.526939631,-0.396736115,-0.0455200486,-0.371063918,-0.227071822,-0.079624325,0.0165732242,-0.28609848,-0.0172311086,-0.114227377,0.390892863,0.441373438,-0.365151525,0.292848825,-0.144515246,0.268566579,-0.469374478,0.216310725,-0.373750895,0.120153062,-0.018642474,-0.423732072,-0.403186262,0.603412807,-0.146911174,-0.046979811,-0.18065311,-0.210943043,-0.96484375,-0.544713318,-0.113088958,-0.226952031,-0.0307753533,0.223130003,0.326198161,-0.0300132651,-0.345668852,0.236328125,-0.131372631,0.377074122,0.372018218,-0.650576651,-0.141706035,0.000512626139,0.18012169,-0.00407157,-0.135266989,0.246029928,-0.0830183625,0.0249676872,-0.0949398503,0.20022139,0.164498746,-0.299843758,-0.0793960318,0.215853781,0.154296875,-0.0934901014,-0.287235916,0.685156226,-0.0747183338,0.339554399,0.618164062,0.415789187,-0.102550574,0.0113518564,0.0827673823,0.0101004001,-0.128876954,0.0770593733,0.331044406,-0.238414779,0.0727474317,0.162619263,0.258748531,0.321999013,-0.333887219,0.414809287,1.140625,-0.160650074,0.177722141,-0.246616095,-0.116194971,-0.749441981,-0.853794634,-0.212838769,0.351238906,0.541015625,-0.492051244,0.338826627,-0.19050999,0.187955722,-0.00868333038,0.254865378,-0.0449091233,-0.642244637,-0.0724677369,0.449609369,0.302778155,0.367161095,0.00636073528,0.072995849,0.0318956822,0.161104754,-0.616874993,-0.019243475,0.7109375,-0.631076396,-0.0192728546,-0.292892665,0.123685688,0.102081336,-0.158235177,0.155712113,-0.0759047046,0.218617752,0.384532422,-0.0810163841,0.403185099,-0.200185716,0.341954708,-0.865234375,-0.113655575,-0.347240299,0.29288736,-0.293858439,-0.334047049,-0.167965248,0.505535841,-0.0788444877,0.696986616,-0.178301007,0.0944308937,-0.603860319,-0.296941429,0.0956844017,-0.446367174,0.10398709,-0.54642427,0.00509162992,0.176201358,-0.229510576,-0.204157814,0.676700354,-0.178280771,0.19031024,-0.272404492,0.372936606,-0.330964416},{0.22807778,0.33301303,0.04309749,0.265625,0.20986833,-0.08122493,-0.07540419,-0.2529087,-0.16011919,-0.14983213,0.64358836,-0.23293631,0.14798272,-0.24599984,0.08714254,0.31154525,-0.70182294,-0.1033783,-0.68927556,-0.0961954,-0.01521577,0.10767967,0.2529818,-0.00459011,-0.30660596,0.49804688,-0.2705357,0.09989008,0.07467133,-0.24928534,-0.43274006,0.08790409,0.2627471,0.13867699,-0.13770024,0.239254,-0.01934172,-0.01870621,0.5864955,-0.25016645,-0.14503771,-0.63616073,0.02152801,-0.5383003,-0.4725548,-0.31737852,-0.7151989,0.38765624,0.16845123,0.03457827,0.05749342,-0.08590061,-0.48131412,0.2793119,-0.44335938,-0.13322411,-0.18215063,-0.00367607,0.11836661,0.29406297,-0.6692116,0.36132178,-0.3192019,0.10801534,0.32518876,0.19811843,-0.1215653,0.03010508,0.22646147,0.22797532,0.50390625,-0.48713484,-0.02268507,0.04430755,0.35473633,0.14634062,0.02066577,0.25964844,-0.28121015,0.3166064,-0.12837753,0.13816808,0.0091222,-0.4295428,-0.10221748,-0.6941406,-0.07855496,0.0849456,0.34948635,0.13039637,-0.6376008,-0.9088542,-0.15917969,-0.00244895,0.04883755,0.35558364,-0.46983507,-0.01943928,-0.6635045,-0.53727365,-0.19374518,-0.02205565,0.03071792,0.13428396,-0.45465583,0.25592864,0.3974067,0.20843333,-0.31252354,0.15571198,-0.0920444,-0.2221515,0.73328996,0.02112205,-0.10918979,-0.1635483,0.3794116,-0.16406539,-0.14745934,-0.0893383,0.5864955,0.25962326,0.23537359,-0.23684375,0.48031947,-0.47224703,0.38598633,-0.20702611,0.47237724,0.28423145,-0.03021872,-0.01212453,-0.03363982,-0.22848672,0.05123036,0.8626302,-0.07010274,-0.02066358,0.53125,0.09375974,0.06419168,0.9453125,0.27918652,-0.29685715,0.03885257,-0.30189732,0.055533,-0.1303396,-0.03726434,0.14936967,-0.0172042,-0.26851487,0.18892768,-0.0617346,0.16018142,0.1179729,-0.05666858,0.0883863,0.44971433,-0.44717684,-0.20842409,-0.14453731,-0.27737978,0.2412412,-0.06886221,-0.20260377,0.4891633,0.80566406,-0.07493762,0.0012365,-0.2567967,-0.33395725,-0.45962524,-0.24885027,-0.05320449,-0.11328258,-0.03018665,-0.16794568,-0.6785156,-0.1591431,-0.10202995,0.39169368,0.28600353,0.14980689,-0.29586226,-0.01961263,-0.20894904,-0.48001802,-0.41096047,-0.01266039,-0.07179035,-0.01930237,-0.20896852,-0.03053636,-0.3299878,-0.03998681,-0.161121,0.25014567,-0.10324948,0.4206155,0.06687407,0.6112651,0.38220993,-0.02029684,-0.16793147,-0.18991154,0.02811215,0.13921398,0.18453372,0.28890568,-0.22510278,0.05606367,-0.10064267,-0.01246714,-0.07960399,0.18062694,-0.5157986,0.15768263,-0.42933595,-0.07372447,0.09132852,-0.24354182,-0.5844029,0.02699297,0.06594051,-0.0727689,-0.06064901,-0.24653459,0.8544922,-0.13818742,0.11546797,0.08327246,0.54133064,-0.0038,0.6817336,-0.37115204,0.04198305,0.12345715,0.35631335,0.41545463,-0.14147197,0.38483185,-0.12041725,-0.07152271,0.6438802,0.22070312,-0.17822838,-0.01352941,0.324288,-0.07301759,-0.16452147,0.0841897,0.05725098,-0.03023866,0.6702474,-0.56421876,-0.16013081,-0.14258263,0.05518587,0.3104884,-0.16109298,-0.2051458,0.2568078,0.57827526,-0.03826181,0.05653443,0.07663961,-0.05555044,-0.1035343,0.19481,0.15343861,0.41597998,0.0742271,-0.26756984,0.06837335,-0.31419232,-0.25685248,0.12352762,0.00145439,0.12890625,0.18511257,-0.4792624,0.286157,-0.28419712,-0.5662667,0.04545159,-0.46982828,-0.09102129,0.04360086,0.4240851,0.09447174,-0.3495743,0.02831578,0.45100912,-0.515842,-0.26367655,0.7910156,0.78027344,0.02003479,-0.26468813},{0.738769531,-0.669921875,1.078125,-0.0202983189,0.127932727,0.147992551,0.163571343,0.38214761,0.355276406,-0.0592812113,0.173394948,-0.505774438,-0.127961531,0.323253751,0.143715531,0.210951895,0.0141084325,0.131828249,0.245996416,-0.578392565,-0.490663111,-0.364203572,-0.0543290377,-0.642578125,0.234350786,-0.12945126,-0.0570101961,0.202586651,0.133301511,0.141154543,0.265532881,-0.0023259127,-0.0116697485,-0.522845626,0.145045117,0.00572086591,-0.153760895,0.0752138719,-0.279296875,0.150828674,-0.483568281,0.343736708,-0.328967929,-0.30069381,-0.353533804,-0.430739194,-0.180662334,-0.277240306,-0.192861289,-0.300757587,0.0745375752,0.391674817,0.37511161,-0.370037138,0.0996141285,-0.171488792,0.293957531,0.472272038,-0.106910139,-0.206565335,0.181177676,0.317440659,0.037091773,0.124714062,0.310639888,0.0321127772,-0.332982391,-0.156802505,0.376029342,0.365516663,-0.0468753427,0.479409426,-0.362380981,0.353761584,0.0504057072,-0.619196415,-0.0818001702,-0.349585176,0.0246261582,0.116426706,-0.387836665,-0.394463897,0.196245342,0.211892053,-0.0431762002,0.220196143,0.145989805,-0.299641937,-0.609730124,-0.207065016,-0.404205799,-0.00870597549,0.08277715,0.30179444,-0.158252597,-0.394441307,-0.0204268601,-0.130838975,0.191885039,-0.186498597,0.0507986285,0.260811955,-0.298891127,0.0959579498,0.117495961,0.171804368,-0.516220868,-0.109805003,-0.37173,-0.139650062,-0.340806305,-0.245157808,0.0861421973,0.177769676,0.382690907,0.186980769,0.0817783922,-0.32127291,-0.129355401,-0.176241323,0.152818128,-0.378818274,0.480322272,0.32232666,-0.386670709,0.0351647735,-0.946614563,-0.238912448,0.341879815,-0.354616284,-0.384759039,-0.126108021,-0.154758111,0.3788957,-0.299719185,-0.0871138796,-0.379202187,-0.0766571984,-0.245644897,0.0168604981,0.611490905,-0.0192432702,-0.746527791,0.10787607,0.0649439096,-0.337081462,0.075706102,-0.0399330854,0.690290153,-0.258804619,0.0287487749,-0.437361121,-0.0507577583,0.180172965,-0.434027791,-0.245629743,0.810937524,-0.202668607,0.0587296858,0.115050979,0.0163346976,-0.177622452,-0.0576978959,0.0954586342,-0.466577649,-0.6953125,-0.113483116,-0.158201024,-0.295938492,-0.156758845,-0.176762521,-0.541130543,0.584472656,-0.0516607016,-0.57144326,0.094643198,0.268514305,0.403453469,-0.000679538702,-0.245070517,0.125911519,-0.52718097,0.219624594,-0.0438415967,0.507743955,-0.575846374,-0.0966928676,0.136720344,0.0980831087,0.0265994966,-0.0966700613,-0.0813212469,-0.371199071,0.245566219,0.699819684,0.0491967089,-0.722167969,0.188044459,-0.138696462,0.454448789,0.248781368,-0.0305695012,0.98828125,-0.0281622913,0.00826071482,-0.58203125,-0.474508345,0.319183737,-0.236282349,0.0844581351,0.158180505,0.310521513,0.0523361787,0.5865767,0.0278777201,0.397673219,-0.331946671,0.109318957,-0.734019876,-0.199124023,0.0833229274,0.182057515,0.204580516,0.0666418076,0.101548724,-0.433613479,0.264651567,0.219221011,0.198725268,-0.568922162,-0.181056827,0.0341506526,0.0895874053,0.0222350657,-0.0619750991,0.0968837589,-0.439166665,-0.42300415,0.382673502,0.0937155634,0.00059167837,-0.695012033,0.169883624,-1.07226562,0.258709162,0.490751386,-0.146413818,0.384724081,-0.230020881,0.0690618381,0.0995562896,-0.021651078,-0.0210270975,-0.0616495647,0.0837482437,0.308281243,0.358632594,0.171442747,-0.0559351481,0.267414719,-0.335286468,-0.376993388,-0.158184052,-0.25066784,0.0583639853,0.110074639,0.205659166,-0.207491264,-0.336006582,-0.119204774,-0.671415448,0.107143529,-0.077413179,-0.565867484,-0.20932357,0.0092282109,0.203030393,-0.0150968656,-0.182112068,0.0352501497,-0.656605124,0.0161517058,-0.271236092,-0.154274076,-0.292901069,-0.377888262,0.388466269,0.0218138695,0.32880798,-0.172383681,-0.346674621,0.374028891,-0.196249768,0.0334656276,-0.283203125,-0.409805387,-0.0318397544,0.457128912,-0.0680911914,-0.279439777},{0.0274829026,0.34776786,0.49606064,0.104953796,-0.130806178,0.30452776,0.148890451,-0.533094645,-0.0661851093,0.175756767,-0.463666528,-0.779119313,0.140210763,0.0881459936,-0.474263519,0.128867418,0.103220008,-0.525390625,0.0629776791,-0.165024728,-0.177676275,-0.15139176,-0.629531264,0.16693829,-0.274315298,-0.225130945,-0.0873706564,0.501169026,0.111110076,0.249363229,0.0768566281,0.204179689,0.121339373,-0.0416147932,-0.513375938,-0.0729875714,0.27839902,-0.470600337,0.0988797769,-0.606835961,0.417937756,-0.30452475,-0.0947604403,-0.389766991,-0.53581512,0.0236971062,0.340451688,0.158724949,-0.332135499,-0.191843137,-0.143572152,0.589397311,-0.330029756,0.162621528,-0.572048604,0.87109375,0.225644976,-0.541374385,0.125543967,-0.725167394,0.193406761,0.143543243,-0.415880919,0.271448553,0.00976469554,-0.384748191,-0.0759451166,0.270510644,0.543428302,0.132788405,0.226061746,-0.556236506,0.176724672,-0.853906274,0.207516894,-0.276401401,0.322230905,-0.693306565,-0.46808666,0.242649898,0.157697469,0.638997376,0.3046875,-0.542751729,0.419780016,0.183637336,-0.115222119,-0.0273989309,-0.745117188,-0.560444057,-0.0286124609,-0.189436778,0.0164209995,-0.0623093136,0.261554837,-0.54296875,-0.402669281,-0.0112122297,-0.244569719,0.325032562,0.117209725,0.145040229,-0.0369561948,0.0273106582,-0.216892615,-0.341840684,-0.295872599,0.305689394,0.544819057,0.22399801,0.450704813,0.0913592502,0.0626469702,-0.0233528093,-0.416804373,0.121084251,0.511328101,0.287080646,-0.045369152,-0.240723699,-0.328149885,0.428292423,-0.286092132,-0.511444628,0.170930535,-0.370951474,-0.124206282,-0.445780158,-0.0333173499,0.0581944697,-0.0808268934,-0.282193631,-0.0666300952,-0.0416019447,-0.152339235,-0.9921875,-0.456759989,-0.0492190681,0.82421875,2.60214329e-05,0.437774658,0.334605008,-0.00208390458,-0.0624992251,-0.05041188,0.569761038,0.0991471708,-0.477926016,-0.270479232,-0.109853573,-0.123283274,0.0360746384,0.363958329,0.132323623,-0.0315621346,-0.291974336,-0.254899353,0.0663712248,0.145028338,-0.176235527,-0.336034358,-0.26559028,-0.408236504,0.512249231,0.44533661,-0.097834684,-0.282102287,-0.0649848878,0.156277835,0.315361738,-0.270579994,0.349500865,0.11158707,0.556846201,-0.059071213,-0.589657724,0.106881417,-0.584087193,0.199180201,-0.384596169,-0.193761304,-0.378815114,-0.0484666638,-0.00220621773,-0.470746517,-0.277296603,-0.165477216,0.0137042748,0.495874286,0.982421875,-0.268568754,0.475791544,-0.36131835,0.398388267,-0.206064805,-0.215841264,-0.0932436362,-0.112331264,-0.308519155,-0.297902137,-0.82421875,-0.344726562,-0.472682476,0.869140625,0.276378423,0.107424103,-0.413818359,-0.352668881,0.531522512,0.499778062,-0.313383549,-0.414857,-0.0253212024,-0.187440172,-0.221120387,0.622023821,0.0479553714,0.756347656,0.248396084,-0.00746243168,-0.0444458015,-0.0959516838,-0.0356456488,-0.446648836,-0.314441502,-0.0820159912,-0.116869994,0.312424004,0.064940922,-0.11912097,0.0908279195,-0.159719974,-0.0983764976,0.0681049675,-0.141018942,0.284986407,-0.0193716008,-0.597257674,0.170370966,0.593191981,-0.104441866,-0.513559222,-0.178185448,-0.54705584,0.245026276,0.141060725,-0.362285286,0.399581313,0.0240841806,0.0372480005,0.440793514,0.615084112,0.377027601,-0.275403649,0.30865556,-0.41980657,-0.203680232,0.466210932,-0.0993683338,0.02909513,-0.24826096,-0.603860319,0.762369812,0.279434502,-0.721540153,-0.0234996751,0.114881448,-0.149908707,0.0228748471,0.0234747026,-0.166480869,0.163603723,-0.0912780762,0.25012055,0.34084174,0.131187737,0.168823242,-0.103989936,0.0420616865,0.028230032,-0.152779296,-0.125569806,-0.283226788,0.859375,-0.204025537,-0.168941572,0.228470549,0.0368860513,0.00122059381,0.828906238,0.101087071,-0.380136997,0.501116097,0.0479772389,-0.188447639,-0.124799386,-0.62890625,-0.221257031,0.136708543,-0.103284277},{0.0141578978,-0.0800741985,0.11073412,-0.4501715,-0.112817109,-0.0342255607,0.101279952,0.245567352,1.05208337,0.260712355,0.681249976,-0.101352029,-0.66796875,-0.222143799,0.209492326,0.0374678224,0.16700843,0.505778015,0.128449097,-0.142620161,-0.548765123,0.535234392,-0.257826298,-0.302782714,-0.13430129,0.101242237,0.254921883,-0.416714907,0.751736104,-0.646670401,0.221195683,0.684374988,-0.0741755813,0.125087664,-0.244657263,0.367260754,0.00535357511,-0.331794173,0.16012083,-0.354533136,0.115215085,-0.34360531,0.272472829,-0.373909146,-0.298863649,0.272314012,-0.305686772,-0.25689137,0.566761374,0.102977581,-0.331916094,0.345616311,-0.134293452,-0.689603388,0.376065344,0.410088897,0.304528058,-0.120796911,0.339613974,0.325118035,-0.413996279,-0.352511168,0.350279003,0.0490934439,0.0810078382,-0.00744687254,0.173393086,0.101328678,0.136771485,0.0255755056,-0.217670113,0.373974115,-0.0632026121,0.818750024,-0.381905913,0.510781229,0.59489888,0.0881206095,-0.608723938,0.453814328,0.190950871,0.11452917,0.094044745,0.0841513425,-0.114451393,0.404442638,-0.235842571,0.451103508,-0.0170678981,-0.430755615,-0.100612037,-0.195760086,-0.0988887176,0.364125073,-0.0490724966,-0.495213479,-0.553819418,0.304803908,0.42482698,-0.0511436313,0.124658071,0.00539660966,0.276373029,0.173314899,-0.226567715,-0.190939859,0.29976663,0.122334465,-0.272436529,-0.024016384,-0.390340179,0.120640717,0.264602363,0.578942597,-0.443132281,-0.0375123024,-0.223155692,0.324094743,0.0265887119,0.0325870886,-0.234849334,-0.415610701,0.394455165,0.120075934,0.347565264,0.20171921,0.178064421,-0.0324417204,-0.273299098,0.296791673,-0.416883677,0.100784205,-0.167491943,0.0181313641,-0.0344344154,-0.301669836,-0.212461695,-0.14888981,-0.0514857881,0.452973217,-0.143532127,-0.468770772,0.774414062,0.401516438,-0.115491323,-0.0537165813,0.325207531,0.152847499,-0.376814604,-0.0592354685,0.644480526,-0.540979445,0.102392413,-0.547526062,0.646484375,-0.37982291,0.173392102,0.107471533,0.178708911,0.463701934,0.107912466,0.377033561,-0.9140625,-0.0472300835,-0.310452849,0.399987251,0.0222581923,0.41158855,-0.654768348,0.252881497,0.0981783345,0.211836591,0.0128389606,0.381868273,-0.856249988,-0.283289939,0.517356157,-0.50390625,-0.32123217,-0.337628931,-0.498466432,0.118636921,0.21240671,-0.106420964,0.013612017,0.201643914,0.0378153771,0.36820364,0.434440672,-0.00275153108,-0.125553951,0.0515259206,-0.570253313,0.12574321,0.221674785,0.262670159,-0.0264679343,-0.96484375,0.0934567079,0.0489820205,-0.00335635594,-0.066618681,0.0290048756,0.0396631621,-0.772265613,-0.0238848552,-0.395576864,-0.0131612364,-1.6015625,0.235856563,-0.00839350466,0.0362675227,-0.451055855,-0.140517294,-0.0961429998,-0.0217543487,-0.245098799,-0.0528492033,-0.291974306,-0.343709737,-0.314534515,0.205571473,-0.283165574,-0.15280135,-0.301698297,0.240224615,0.515793025,0.278253287,0.0410053842,-0.231460869,-0.429024845,-0.425390631,0.312762231,0.314437062,0.0747252107,0.0299077313,-0.0419973508,0.512053549,-0.446684957,0.540178597,0.2578125,-0.0754724219,-0.231896579,-0.669730365,0.139654189,0.0966492146,-0.614118278,0.180154279,0.0703408644,-0.000822518545,-0.385779262,-0.207055464,-0.148375079,0.229492188,0.569695711,0.486464381,-0.189457729,-0.136201873,-0.0495757051,-0.0511614084,0.172315121,-0.14109689,-0.585530579,0.00175763597,0.0920222774,-0.163523003,-0.221179813,-0.0971714482,-0.435687393,-0.380641162,0.60546875,-0.00045179532,-0.28914246,-0.336682618,0.385675728,0.051982265,-0.194358304,-0.16350244,-0.0903110653,-0.0355719477,0.104475066,-0.154282376,-0.142095551,-0.167995989,0.579527259,0.218813196,0.0247960966,0.154250056,-0.076906085,0.0407687798,0.107907891,-0.188942537,-0.795572937,-0.609505236,0.450984865,0.0522687659,0.012969275,-0.295923471,0.04414469,0.290001512},{0.00615084358,-0.263575971,-0.0471096635,1.37918487e-05,0.00972000044,-0.167062819,0.694110572,0.0754437968,-0.143046737,0.467848569,0.98828125,0.276292056,-0.0937331617,-0.316386908,0.281237483,-0.443568647,0.0487006605,0.0791543648,0.31261307,0.243589416,0.274326652,-0.654999971,0.206097409,-0.0191420503,-0.106195979,0.137713403,-0.408151448,0.118656114,-0.104486056,-0.146978453,-0.00285429112,-0.232387066,0.137678951,-0.0582434125,-0.48783204,0.251592606,-0.111549661,-0.043192111,0.26068753,0.200687543,-0.0842157304,-0.445659727,0.307564646,-0.223125666,0.0981612131,-0.556236506,0.164526641,-0.450712323,-0.0357947722,-0.275406241,-0.678986371,-0.11062941,0.189432681,-0.289141804,-0.464062512,0.274419636,-0.0901081264,-0.164098471,-0.00456921477,0.179145336,-0.302698493,-0.304702759,-0.467901945,0.0185755379,0.122378938,-0.0744765103,-0.307581902,-0.477873892,0.754464269,-0.228954747,0.300769478,-0.277169585,0.262602299,-0.133303836,-0.233381465,-0.685058594,0.482150614,-0.317242205,0.013668769,-0.182574436,-0.308427215,0.0413488448,0.7578125,0.367141008,0.0881669223,-0.33665365,0.209020808,0.200730771,0.0878748298,0.306633294,-0.203147367,-0.25292778,0.465869129,-0.269494534,0.0810768828,-0.0233312566,0.692157447,0.0456418581,0.00969991181,-0.0184897818,0.19481127,-0.0973911211,-0.0722360089,-0.468261719,0.743566155,0.244189277,0.243097425,0.192335933,0.775716126,0.336448729,-0.176801249,0.164503381,-0.14361003,-0.199229136,-0.35875693,-0.0513893105,-0.0187598169,-0.630326688,-0.186410487,-0.322376192,-0.309552431,0.0215525068,-0.139655918,-0.24752827,0.153800443,0.368876696,-0.301682681,-0.131291986,0.572844326,-0.281291991,0.312637717,0.240107551,0.9453125,-0.112778813,-0.157677665,-0.141645581,0.11593201,-0.372202933,0.203668997,0.297830462,-0.225002766,-0.384810835,-0.530792534,-0.241660818,-0.121753447,0.0215033907,0.720424116,0.220209792,-0.201121226,-0.185548604,-0.25390625,-0.0832678154,-0.107428178,0.188993111,-0.0932572335,-0.176296249,-0.173326179,0.12557596,-0.236815318,0.0249993689,-0.1752882,-0.132280722,-0.42743957,-0.131757498,0.240701258,-0.10420157,-0.123924039,0.147959501,0.206513554,0.0483287461,0.221629173,-0.124670967,-0.333854824,0.0465442091,0.318261117,-0.375886291,0.586079538,-0.125784144,0.220246345,0.0195120163,-0.517433465,0.518229187,-0.240679219,0.174246654,-0.111848369,0.429455459,-0.234490588,0.24371694,0.0117824199,0.4510535,-0.389757782,0.296865791,-0.237299621,-0.107364669,0.20359838,-0.765625,-0.412682086,0.631204069,0.328114212,0.481047451,-0.3105703,0.101092875,-0.378832549,0.44559896,-0.0275416337,-0.0104233241,0.238271162,-0.52734375,0.0063830982,0.139082029,0.203197092,0.183984369,0.417593151,-0.224106595,0.361637086,-0.310431004,-0.606584847,-0.495492786,0.00457653636,-0.524804711,-0.337828189,0.609375,0.511541188,0.216317922,0.245729789,0.0628828257,0.430209994,-0.298912197,0.0204784982,-0.00253959838,-0.059169434,0.092236191,-0.166475087,0.658854187,0.154357135,0.299748987,-0.192896798,-0.362331092,0.556445301,0.190943554,0.103257716,-0.136233538,-0.358326346,-0.264691591,-0.342627406,0.279289067,-0.128903568,-0.138699293,0.228997841,-0.107631817,-0.481505096,-0.387603909,0.449976325,0.278338164,0.252850652,-0.181156933,-0.229053065,-0.675037205,0.0900422633,-0.994140625,0.254903704,0.324171305,-0.334009409,-0.66796875,-0.121087015,-0.00237844815,-0.400218934,-1.0546875,0.00323112728,-0.242140993,0.22758694,-0.0445490777,0.303652883,0.140635163,-0.419709593,-0.216294065,-0.338842154,0.26843214,0.214876205,1.01822913,0.222137108,-0.403529584,0.578004837,-0.30867216,-0.392464906,0.542224705,-0.0265586469,0.635044634,0.361408263,0.244668201,-0.213814482,0.00475645578,-0.222235829,0.15477708,-0.44662711,0.125405848,-0.0596791357,0.346707076,0.439348966,0.180655733},{0.02002107,-0.12460468,-0.03709895,-0.21003516,0.21953557,-0.6739005,0.47444662,-0.06175143,0.3710261,-0.41330296,0.3918352,-0.64671874,-0.17528898,0.15434392,-0.42200366,-0.01597613,-0.5291193,-0.73828125,-0.36022636,-0.34086892,0.14058019,-0.13076694,-0.13420293,0.03994045,-0.16356796,-0.29970446,0.07204887,-0.3190324,0.30839092,0.05890986,-0.04259387,0.33795446,0.17674033,0.38874123,0.19627996,0.06681779,-0.09233194,-0.5157047,0.41804388,0.3065563,0.29785427,-0.43070114,-0.13960718,-0.23815677,0.30073935,-0.46366554,-0.66015625,-0.18991478,0.37396598,0.3934733,-0.37304688,0.4090447,0.51982605,0.03881097,0.32722613,0.10326033,-0.5720017,-0.15824802,0.07010201,-0.22222602,-0.7235577,0.10859628,-0.58984375,0.10028591,-0.15429892,0.6442308,0.55767465,0.76519096,0.00300795,-0.0528568,-0.43118107,0.21917301,-0.03627381,0.22067615,-0.10228422,-0.16112863,-0.26940548,0.41112208,0.32217407,-0.14890254,0.09370676,0.00849308,-0.01661193,0.291174,0.05053002,-0.13674378,0.16455905,0.03303794,0.09594014,-0.03505452,-0.18064594,-0.0364477,-0.28032213,-0.01489602,-0.5859375,-0.14695098,0.4178274,-0.378809,0.5951761,-0.08301429,0.3105545,0.05810547,-0.59331596,-0.23146169,0.16118683,0.10470188,-0.3776755,-0.16692694,0.48117188,0.46584412,-0.04682521,-0.45998597,-0.2908296,-0.17633045,0.12568952,0.08523552,0.06787923,0.45739746,-0.2870648,-0.18455255,-0.08158506,0.29190022,0.24650192,0.13137203,0.06055341,0.08792946,-0.3672186,0.7872243,0.7776989,-0.08105399,-0.10941119,-0.6785714,0.00889436,-0.4356952,-0.6298828,-0.06300257,-0.6354167,-0.09449851,-0.01503402,-0.12996948,-0.12932593,-0.23480546,0.01600149,-0.02793211,0.62194294,-0.27937955,0.39999643,0.12326697,0.04810039,-0.32416868,0.23436157,-0.27836645,0.14651646,0.297919,-0.3826812,-0.6148437,0.3221402,0.6284555,0.01546239,-0.05409853,-0.10449789,0.26462728,0.54518425,-0.53825647,-0.01302415,-0.13762152,0.04948108,-0.10813373,0.1948578,-0.01836854,-0.14505088,-0.15282542,0.46868992,-0.23095873,-0.23769146,0.27933532,0.49306956,0.11754729,-0.04869319,0.42514038,0.11052595,-0.24567723,0.45372817,-0.296784,-0.22115675,-0.2192782,0.41748405,-0.6906738,0.3381066,0.24074443,0.04812932,0.058591,-0.8081597,-0.06158821,0.11252882,-0.06862571,-0.48835638,0.32214075,0.03246869,-0.1698982,-0.39063597,-0.63221157,-0.05843587,-0.2402199,0.20705801,-0.18211974,-0.16503115,0.33978206,-0.34948516,0.21328859,-0.03395691,-0.39275867,0.7832031,0.12463643,0.13026923,0.93359375,-0.5764974,-0.19235031,0.21387474,0.0783874,-0.5389757,0.11766985,-0.5241935,0.05104175,-0.50920284,-0.3062632,0.46111506,0.05200287,-0.5448495,0.22806904,0.03100462,-0.12155505,-0.5926339,0.32707483,-0.05516231,-0.13133727,0.03965152,0.2597355,-0.5992187,-0.84375,0.28615198,-0.35722864,0.13378248,0.1880316,-0.18893985,-0.30458578,0.01428171,0.7014223,-0.03637429,0.19575809,0.17827132,0.49655983,0.3887299,-0.08966557,0.02452081,-0.64411455,0.19330595,0.10227689,0.61154515,0.11075733,-0.03731112,0.69227433,0.15385456,-0.59602106,0.19383168,0.08763331,0.3114434,-0.18992943,-0.02617286,-0.63704425,0.3194336,0.23779374,0.09665531,-0.15526551,0.22702205,0.20361024,0.14305252,-0.12055799,-0.25491056,-0.32611686,-0.332162,-0.07280137,-0.34663004,0.1801054,0.34191597,-0.15178552,-0.15031374,-0.81901044,0.47062942,-0.26568508,-0.2968611,-0.07250045,0.13579687,0.3800632,-0.12469565,0.3876085,-0.42858666,0.1785994,-0.30280212,0.14405417},{-0.28233862,-0.25010353,-0.58128005,-0.11718254,0.15232465,0.2850664,0.0859143,0.15529317,-0.3885076,0.5938684,-0.40613163,0.02182307,0.41080037,-0.2898911,-0.11642884,-0.3503906,0.30461794,0.29584122,0.2265767,-0.8179687,0.4220263,0.36326152,-0.08008156,-0.2280298,0.5656867,-0.7003038,-0.48230794,0.15334946,-0.7690972,0.50253904,0.14402182,0.38543567,-0.00551749,-0.10889276,-0.23585375,-0.40446806,0.7510653,-0.49182293,0.08568858,-0.08470875,0.00622314,0.03480251,-0.5967548,-0.46548912,0.06735241,-0.70878506,-0.32619387,0.14263545,0.7005208,0.02371943,-0.3622555,-0.90625,-0.21383792,-0.06223017,0.07858923,0.8234375,0.14203379,-0.38677678,-0.66341144,-0.11962214,-0.20950727,0.1149675,0.12462127,-0.40233397,0.40092027,0.4414736,-0.23681556,0.29877207,-0.16604528,-0.07691297,-0.10481095,0.08741891,-0.5756579,0.3388672,0.33152175,0.36585116,-0.30070946,-0.00140643,-0.02079445,-0.24268769,-0.14503032,-0.1503809,-0.04445378,-0.19827092,-0.37566996,0.12991983,0.5610532,0.37023494,-0.20789501,0.7282366,0.56668526,-0.03069479,-0.1747762,-0.08032565,0.32993585,-0.1542874,0.06571518,-0.40039062,-0.44150513,0.135778,-0.18363535,-0.19522232,-0.05942537,0.2300543,0.4520628,-0.53683037,0.2890867,0.04680204,-0.5674913,-0.5227482,0.1587294,0.20457113,0.12081499,-0.0289915,0.25679618,-0.66436297,0.05492359,-0.08029906,0.1174454,0.5370133,0.1825784,-0.12463621,-0.7941707,0.06693095,-0.08301093,0.14151317,0.00482353,-0.07830627,0.39213103,0.4943399,0.46391368,-0.2100492,0.30661246,0.42590225,0.0158713,-0.5560547,0.51912004,-0.44749814,-0.21381097,-0.05934924,0.21587029,0.1674429,-0.38082722,-0.07620458,0.3456136,0.61306816,-0.02234433,0.66426283,-0.3905653,0.43004623,0.05238495,-0.6670532,0.32912868,-0.0071435,-0.31626016,-0.4677447,0.1923093,0.16840221,0.13038225,0.06334531,-0.2792355,0.5492877,-0.3409968,-0.23042488,0.03430431,0.21128015,0.18017456,0.45148325,-0.23682712,-0.18941662,0.23150867,-0.16116735,-0.18894808,0.24223189,0.09544118,0.06881467,0.06493722,-0.6321094,-0.10737831,-0.10960763,0.15283921,0.8203125,-0.01772008,-0.05789533,-0.20988218,0.4110896,0.45647025,0.32256457,0.8388672,-0.41782925,-0.04495971,0.92578125,0.10766715,-0.09864049,0.6435547,-0.05434087,0.04725723,0.05208302,-0.33296824,0.17918546,-0.1738537,-0.38081953,0.14311059,-0.76060265,0.67578125,-0.60479265,0.6035748,-0.0805346,0.10763653,0.22369981,0.320048,-0.0125954,-0.1586732,-0.31048885,-0.10477573,0.7523438,0.16492574,0.22408715,-0.23197798,-0.6037177,-0.32516125,0.04333194,-0.20704001,-0.11552364,-0.06615796,0.43449885,0.14603521,0.48632812,0.2148469,-0.1928745,0.3856636,0.1352571,0.6024306,-0.40517837,0.01853562,-0.767334,0.13768114,0.3125947,0.12791525,-0.07762296,-0.24809739,0.11667652,0.3162449,0.2682931,-0.11633568,-0.1479398,-0.12257076,0.07912069,-0.07617275,-0.29289177,-0.8125,0.25682074,-0.4613155,-0.07567088,-0.05355754,0.35925418,-0.24719438,-0.7548828,0.19620124,-0.19770761,0.24510518,0.2568833,0.5350507,-0.11547007,-0.19325265,0.04214683,0.38762626,0.00302984,-0.04081795,-0.3670852,0.04229321,-0.01223239,-0.3534829,0.46265626,0.07519968,0.10833821,0.24565372,0.5840517,-0.31239116,0.25195312,0.41421083,0.23582235,-0.33096066,-0.54829544,-0.00869554,-0.3670866,0.13032497,0.08427173,-0.11181449,-0.108476,-0.01732063,0.03283909,0.43575615,-0.14013843,0.01216223,0.40546876,-0.02613968,-0.49150687,0.20018236,-0.44250488},{-0.07684651,0.13184369,-0.3377534,0.1367351,0.31908032,-0.21291697,0.03843439,0.08233911,0.26866993,-0.38760376,-0.0366406,0.20110704,-0.37903005,-0.5940104,-0.09986913,0.01606352,0.18116352,0.2587586,0.15382864,-0.1269322,0.17240201,0.20703734,0.6408482,0.02773939,0.19039866,-0.29014227,0.30886212,-0.3039039,-0.22259654,-0.0725631,-0.32426566,-0.06323664,0.23295557,-0.29019457,-0.03239119,-0.12084241,0.05664819,-0.17377804,-0.10866087,-0.20068233,0.06264982,0.38153934,0.05129756,-0.13130549,-0.19032842,-0.03285465,0.68415177,-0.42885637,-0.31832886,0.47580296,-0.25689417,-0.43865928,0.2504778,0.41312748,-0.11209885,-0.25285393,0.04162598,0.20748971,0.1660565,-0.37892362,0.0506874,-0.00104792,0.16553296,0.17669497,0.17339389,0.371716,-0.15722518,-0.00245639,-0.08299105,0.50590944,0.13327183,0.02172736,0.02700754,0.2577849,-0.10865066,0.30570534,-0.01808231,-0.1562418,0.16552086,0.16210291,0.04466704,0.81933594,0.5443892,-0.3615137,0.19880247,-0.28125945,0.21866016,-0.21878573,0.26075706,-0.07423605,-0.24929592,-0.6517693,0.28615078,0.47670937,-0.25685284,0.24410978,0.20852418,-0.11034829,0.2549356,0.1573055,0.06539696,0.10891634,-0.03134611,-0.64160156,-0.09325673,-0.02014735,-0.17821537,-0.35930705,0.9355469,0.10739063,-0.20164266,-0.19775008,0.12599541,-0.4996244,0.24160796,-0.12112699,0.3104771,-0.13672137,-0.24076614,0.0956606,-0.24419045,0.56226325,-0.10941507,0.0063992,-0.24371547,-0.01411844,0.27041802,-0.22028297,0.2344023,0.3086172,0.23961464,-0.18845338,-0.02705085,0.22901753,0.22660135,0.14110102,0.03676451,0.15181622,-0.30171975,0.20161282,-0.01965506,-0.33791566,0.04892528,-0.03979764,-0.18111932,-0.06107733,-0.37100694,-0.30179092,-0.15376431,0.03128259,0.71948904,-0.3632152,-0.18020841,-0.3368353,-0.15133557,-0.18891953,-0.03249655,-0.1332865,0.41646853,0.14844692,0.08791818,-0.38879707,-0.45703125,-0.14106487,0.19723724,-0.23970512,0.2939087,0.20652694,-0.39068487,0.48233786,-0.24966519,0.05553057,0.39711508,-0.21339568,0.00148993,-0.21238247,0.7405134,-0.0761646,0.06362937,0.3644039,0.08326411,0.32716796,-0.3008355,0.06268512,-0.16801423,-0.8020833,0.7845052,-0.08056777,-0.32097876,-0.35528848,0.6928711,-0.19143401,-0.07544417,0.02630193,-0.12986116,-0.4197998,-0.20418094,-0.24358296,0.16253379,0.08690103,0.46868217,-0.17629884,-0.20843089,0.01743052,-0.38282666,-0.07321411,-0.03416375,-0.5980469,-0.5449219,-0.4287969,-0.06206729,0.21636708,-0.1807063,-0.10252757,-0.6927849,0.2167794,0.15086071,-0.22453408,-0.21832466,-0.08860717,0.10297441,0.01543173,0.01776479,0.2723972,-0.74822444,0.19390555,0.19674121,0.46374762,-0.2695981,-0.05814583,-0.03782154,0.11908197,0.2167897,-0.2518604,0.16847381,-0.18644126,0.45993134,0.40752882,-0.02074919,0.26068518,0.11938158,-0.26268193,-0.11203495,0.29708835,-0.20270368,0.5292969,0.06544509,0.1415872,0.09982946,-0.21723302,-0.08694968,-0.1820925,0.33200786,0.43355054,0.6517428,-0.22859277,0.08010433,0.02087428,0.17235328,-0.21143898,-0.85546875,-0.11135595,0.48853326,-0.04697276,0.09890111,0.21629895,0.36043295,0.00897056,0.63352275,-0.18164659,-0.6303454,-0.541324,0.18899629,-0.18910846,-0.1391299,0.18259025,0.08201493,-0.83984375,-0.36210936,0.0217608,0.56043196,-0.2929528,0.18116018,-0.02817785,0.26268074,-0.17916368,-0.36819965,-0.27156785,0.30638862,-0.8125,0.16156659,0.6995739,-0.44876665,0.875,-0.157573,-0.14157212,-0.40429688,-0.06980736,0.75301844,0.23286386},{-0.19675231,-0.057994023,-0.202678293,0.15822491,0.571134865,-0.0888417214,0.0744894668,-0.132335156,-0.0529754758,0.110839382,0.581597209,0.18902722,0.000235208499,-0.0257165488,-0.697544634,-0.176686525,0.0258949306,0.437367439,-0.120372564,-0.525267005,0.248887122,0.417865962,0.112794466,0.0751848072,0.859375,-0.117648266,0.000158428636,-0.0420394912,-0.183154404,-0.0910655186,0.08592318,0.48838827,-0.575954854,-0.474259555,0.0597127266,0.0594124906,-0.178241715,-0.426025391,0.509567499,0.0400531143,0.15036273,-0.107660741,0.290017366,0.00478020962,0.19488512,-0.0382525027,0.176787898,-0.080548808,-0.182127118,0.777994812,-0.648255825,-0.141138136,-0.375059456,-0.02252784,0.0724754035,0.206010669,0.708333313,0.326444417,0.467500001,0.235909596,0.365121156,0.59765625,-0.0969730318,-0.295845062,-0.288115889,0.172853976,-0.260663658,-0.271537155,0.158789068,-0.129294232,-0.338652223,-0.440262526,-0.0884179696,0.20267567,-0.343661785,-0.655124485,-0.160621867,0.113244362,0.519067824,0.0697925091,-0.2646676,-0.163078815,-0.0881331488,-0.156265289,0.179156676,0.741406262,0.0370139666,0.269511402,-0.00211321306,-0.280324847,0.0834655762,-0.598144531,-0.0422188267,0.696568072,-0.43820402,-0.187976509,0.0935249329,-0.514028549,0.1117943,-0.948242188,-0.0683454126,-0.491366625,0.0630019605,0.573593736,-0.558105469,0.0681235865,-0.0200668313,-0.89453125,0.114226326,-0.297787011,0.00933949649,0.372277468,-0.177174598,0.17048429,0.0681368485,-0.0610838197,0.179220453,-0.045885589,-0.0622919463,0.451923072,-0.958984375,0.0928153172,0.202599436,0.171846449,0.464972049,0.161579132,-0.236319989,0.0343884453,0.0369476452,-0.497448981,-0.254849732,0.265646636,0.0740126893,0.130850196,-0.214423358,0.0685783252,0.145997569,0.31053701,-0.404918313,0.229027301,0.338794857,-0.704152942,0.25954175,0.505838811,0.498401999,0.272391409,-0.576363385,-0.0325110033,-0.329042107,-0.0207272507,0.198223382,0.333063602,-0.217281044,0.195769578,-0.118956611,0.0690387264,-0.536857367,-0.290884733,-0.10492035,-0.258791208,-0.310329854,0.363430053,0.612964511,-0.0910785571,0.00331783202,-0.509615362,0.221633837,-0.16560024,-0.125799611,-0.0307921339,-0.0357637294,0.0827523395,0.161603659,-0.0286514778,0.0511951223,0.533593774,-0.0242884848,0.512428999,0.472325712,0.0732793137,0.0734439194,-0.35352543,-0.541087985,0.114467926,0.438313812,0.292980045,0.478224128,0.163111225,-0.50163424,0.140604198,0.294839561,-0.0580101386,-0.0367488824,-0.00117914495,-0.22942093,-0.241914764,0.431946993,0.196730465,0.197167143,0.301772654,0.142106235,-0.825195312,-0.0899013802,0.19762671,0.546519876,0.208801702,0.708869457,0.420664608,0.273396224,-0.122357674,-0.429707438,-0.582899332,0.306701034,0.188444287,-0.167434484,-0.163667396,0.234286457,-0.611979187,0.130382642,-0.292862445,0.127878636,0.460668951,-0.294714987,-0.170886695,0.318428457,0.474171609,0.0306085516,0.17186138,-0.0654112324,-0.206466421,-0.104490131,-0.0713064149,-0.0375847556,-0.182142854,0.0469840169,-0.723090291,0.00129675912,-0.37689364,0.752976179,0.165969059,0.482551217,-0.128894612,-0.473858178,-0.282223791,-0.625976562,-0.727627814,0.0460380726,0.560487688,-0.493391484,0.108913451,0.59622395,0.190413013,0.555042624,0.513592184,-0.219650775,-0.533157706,-0.0573540516,-0.264671683,0.0450238287,-0.543383062,0.680989563,0.0374851823,-0.0162270311,-0.565521836,-0.544682026,0.576219499,-0.309609652,-0.122822404,-0.256720901,0.0090296315,4.26005718e-05,-0.372095346,-0.183136106,0.240106851,0.159174487,-0.326130182,0.0954303518,0.191376597,-0.0282253008,-0.497851551,-0.124867804,0.227042452,0.0874018222,-0.482271641,-0.0829915106,-1.0078125,-0.00123331451,0.100403808,0.223110288,-0.0392384343,0.138104022,-0.364143252,0.150954276,0.395431638,0.415066451,-0.185987517,-0.647656262,0.311507761,0.491066575,0.0671127737},{-0.10204315,-0.4572443,0.07203883,0.3055955,-0.5861895,0.12573828,-0.2519244,-0.05132306,0.68073916,-0.17574587,0.12784708,0.42071533,0.16841264,0.42962208,0.8203125,-0.14397693,-0.2588648,0.52526283,-0.6105769,0.5190104,0.09473895,-0.10549529,0.4737262,0.08124382,-0.42771316,0.06316034,-0.11624146,-0.17434435,-0.2367949,-0.17191775,0.11353279,0.46154067,-0.48819986,0.20752326,-0.6219161,-0.39357662,-0.24317479,0.01522925,0.22802642,0.12577626,0.8417969,0.06195983,0.16504683,0.44326332,-0.07027157,-0.24658544,-0.04026998,0.06244062,-0.17237164,0.13085511,0.1152091,0.33208176,0.83203125,-0.21625522,-0.13037042,-0.15283427,0.5710685,0.06201839,0.04438001,0.15146926,-0.35752344,-0.3362021,0.17323902,-0.38878328,0.3212248,0.12270131,0.16194233,0.14257452,-0.28904122,0.0602454,-0.1921649,-0.05516674,0.08687244,-0.29004687,-0.4540915,0.01609314,-0.05895874,-0.11867427,0.12011506,-0.7375488,0.35618648,0.21343198,-0.02790235,0.06518713,0.14749454,0.04101765,-0.26080635,0.2548985,-0.31572524,-0.0295391,-0.57037985,0.02899305,-0.3055846,-0.02159685,-0.80859375,0.25575307,-0.09959196,-1.140625,-0.28093097,-0.29780343,0.38191777,-0.34757486,-0.5700521,-0.37386534,-0.2870423,-0.2456619,0.0991118,-0.3007302,-0.00265344,0.20366369,-0.70390624,0.09858085,0.31544647,0.3516217,0.03782748,0.48099458,0.11335269,-0.13082811,-0.01345679,-0.4649048,0.30078125,-0.2751912,-0.19529937,-0.264645,0.20754021,-0.2065318,-0.20363766,-0.2501564,-0.04315775,-0.16934867,-0.0426088,-0.23784997,-0.14691006,-0.19484591,0.48309004,-0.04712707,-0.8671875,-0.33768973,-0.15866686,-0.11909103,-0.00293412,-0.08348497,0.10113171,0.36717325,0.07938473,0.21088986,0.43134224,0.31834513,0.03383737,-0.3487095,-0.00534563,-0.21932034,-0.17286266,0.2588515,0.0223598,0.5833333,0.453062,0.4108719,-0.07811794,0.2849842,-0.00873981,-0.2274086,-0.310488,-0.08347766,-0.24503885,-0.38855132,-0.09790677,0.3086631,-0.5178195,-0.16596071,-0.15722075,-0.4116423,-0.53869045,-0.31040546,-0.5098459,0.08276087,0.38697916,-0.7953559,-0.05890863,0.17731829,-0.09521964,-0.08517245,-0.08959931,-0.34201592,-0.13036564,0.05004883,-0.01239137,0.11560971,-0.345615,0.70870537,0.08857499,0.5568182,-1.0234375,-0.3701265,0.58771306,0.91308594,0.46618652,0.828125,0.36635345,-0.7398437,-0.16448455,0.30367637,-0.5466146,-0.06082227,0.07793856,-0.4737818,-0.11697285,-0.0690959,0.24216634,-0.09349962,-0.16303094,-0.26360047,0.15240675,0.08153196,0.15675543,0.12888981,0.44698662,0.18017095,-0.08837116,0.05235936,-0.41987482,0.03535589,-0.07592808,-0.03185282,-0.0717332,-0.2158659,0.36138138,-0.46970153,-0.38671875,0.0954555,0.05240232,0.06813168,0.19821854,0.76841515,0.5663488,0.03620563,-0.27149263,-0.22166255,0.07986366,0.32158238,0.05102133,-0.0453199,0.28322935,-0.14643021,-0.15574218,-0.58573717,-0.20411895,0.30762172,-0.21774617,-0.6527623,0.1670214,-0.046813,0.16792864,0.61832386,-0.05991488,-0.9707031,-0.32521266,0.41100162,-0.2080425,-0.12742098,0.5440104,0.03222851,-0.1396606,-0.20651414,-0.06015291,0.26855028,-0.4952176,0.05325343,-0.71191406,0.234375,-0.50760907,0.09785449,-0.13859601,0.00376044,0.1845793,-0.08565918,-0.3896875,-0.5755208,0.32917133,0.3428166,-0.17033626,0.18457757,0.06860223,0.2939999,-0.12134746,-1.1875,0.08597079,0.24891593,0.26466984,0.55307114,-0.14788066,-0.2833807,-0.3692776,-0.79557294,-0.25585938,-0.11814128,0.0311492,-0.3847763,0.38789064,0.17041162},{-0.8515625,0.4178519,-0.7167969,0.17916544,-0.3154948,0.07293997,-0.14452645,0.01049391,0.10906915,-0.18646659,-0.24513587,0.10516738,-0.57111377,0.23826425,-0.04435623,-0.54322916,0.33589005,-0.03866803,0.0913029,-0.05470169,0.4756983,0.3894475,-0.35528353,0.73339844,-0.3233367,0.00713827,0.09583144,-0.24881214,-0.6995192,-0.10910596,-0.22653441,-0.66779894,0.32125393,0.07787156,0.36410362,-0.28803572,0.33098283,-0.062153,0.3457883,0.7143842,-0.29444772,-0.07590809,-0.04869461,0.06009456,-0.11089216,-0.4435547,-0.16750349,-0.12893063,-0.61098844,0.22906241,-0.5097801,-0.16746756,-0.11937287,0.2606496,-0.09297563,-0.49820313,0.36916894,0.1620411,0.11132132,-0.2900569,0.26948878,0.6511896,-0.17331673,0.03102485,0.10589584,-0.11574973,-0.0567921,0.14991614,0.68689907,-0.27153248,0.04175725,-0.11184487,-0.2588738,-0.0308304,-0.16987246,-0.3212698,0.4267868,0.17330794,-0.04215929,0.2938689,-0.27549106,-0.17429526,0.082033,0.17489219,0.03065549,0.49545127,-0.06519886,-0.2840217,0.02815616,0.37103224,-0.84765625,-0.6866508,-0.0812595,-0.11933375,-0.10202013,-0.04675077,0.161098,0.02143784,-0.39440295,-0.03753132,-0.21332213,0.7109375,-0.36696804,0.48670503,0.22642991,-0.08199836,-0.54487425,0.19956648,-0.18985109,-0.7677557,0.2656156,-0.38894284,0.23136882,-0.29486418,-0.48609835,-0.07179862,-0.17093395,0.74902344,-0.2743002,-0.19682884,-0.20844336,-0.11035156,-0.40821427,0.40127143,0.30460146,0.4468814,-0.5093994,-0.30439454,-0.63016635,0.45689604,0.03536615,-0.02877703,0.29478237,-0.03329767,0.46025544,-0.52120537,-0.02903396,-0.00496474,-0.54304534,-0.10328185,0.3769861,-0.41419935,0.07759833,0.35556108,0.24398835,-0.13429424,0.23037142,0.53672826,-0.26068056,-0.09890247,0.46186692,-0.5078125,-0.52563757,-0.2596132,0.25487065,-0.26474133,-0.34853297,-0.68828124,-0.30560002,-0.07153165,-0.3652242,-0.06982086,-0.06443243,-0.3350338,0.4671875,-0.16501875,0.3791865,0.0908291,-0.42377234,0.23239192,-0.24756256,0.13281436,-0.01860443,-0.04580068,-0.65988684,-0.11982899,0.01910565,-0.32319835,-0.02195187,0.162614,0.1435845,-0.18167387,-0.57121396,-0.6410362,-0.1498352,-0.15039824,0.16456236,0.3856368,-0.08712218,-0.20252757,0.2715118,-0.22600353,-0.06042561,-0.15579297,0.0786368,0.21440825,0.14168411,-0.39359537,-0.5834375,-0.33007812,-0.20167576,0.08741008,-0.5060144,0.54477894,-0.23005566,0.14735733,-0.6933594,-0.62437,-0.17621864,-0.3203252,-0.28810576,0.02521263,0.06541914,0.06317499,-1.0,0.3260613,-0.8964844,-0.4170149,-0.05782885,0.27334973,-0.24364138,-0.02337257,-0.11819816,-0.02562446,-0.2673009,-0.65625,-0.17623697,-0.8129883,-0.01298037,-0.4226117,-0.152827,0.04251147,0.38464135,-0.06158708,-0.06951918,0.63341343,-0.55616915,-0.33984375,0.02315773,0.03808771,0.06522341,-0.23971462,-0.0203565,-0.254848,0.53796387,0.05506378,0.07150661,0.8197545,0.24498698,0.04597586,0.03505011,-0.4257598,-0.509668,-0.38085938,-0.31306776,-0.25687617,0.23568206,0.0952535,-0.25008044,0.78515625,0.5089466,-0.02341191,-0.21240127,-0.06470539,0.25880927,-0.19740249,-0.19292368,-0.33499712,-0.39044073,0.11472445,-0.19188084,-0.10397169,-0.17282042,0.26060712,-0.0033943,-0.22896285,0.18648995,0.1503243,0.07321749,0.3564897,0.21292238,-0.1125605,0.02472792,0.02966656,-0.71796876,0.38952637,-0.3184628,0.00891623,-0.01152819,-0.00144101,-0.03187641,0.44247827,-0.5291554,0.33381635,0.23249225,-0.22352588,-0.22859667,-0.1323141,0.47649667,-0.36420456},{-0.331821978,0.121567018,0.0154254157,-0.439579129,0.136725694,0.108139738,-0.401818722,-0.517695785,0.007554173,-0.463301808,-0.169328138,-0.478356838,-0.151426509,0.646334112,0.221748456,-0.266533732,0.390476674,-0.181661144,-0.333144397,-0.159209371,-0.28889975,-0.318337083,0.147419289,-0.315404654,0.210870147,0.467940181,-0.0729859993,0.373126596,0.163538754,-0.0522725247,0.0996388122,-0.570688128,0.0934708863,0.474609375,0.00513924938,-0.612980783,-0.208925381,0.796875,0.384552568,0.370962203,0.251953125,0.263775527,0.438420296,0.09812776,0.0256131589,0.149906993,-0.0944737345,0.0785959065,0.0649222061,0.705566406,-0.1640625,0.224192187,-0.817608178,-0.157771841,-0.322233945,0.198819384,-0.535534263,0.0413183458,0.0911124423,-0.336850166,-0.0271354746,0.0331631936,0.257770658,0.0552754886,-0.106197312,-0.024085762,0.0557635725,-0.20108667,-0.0659189895,0.386769623,0.0603157096,0.0942404792,-0.24016948,0.245965943,0.453613281,-0.776367188,0.178162307,-0.10835243,-0.292888105,-0.056669537,0.0685973391,-0.238718465,0.132290229,0.263723075,-0.393303961,0.116419576,-0.579176664,0.00955590233,0.0357319526,0.234941512,0.20601055,-0.16162236,-0.463610828,0.168935925,0.585156262,-0.113266662,-0.0369644724,0.155735359,0.355529577,0.2734375,0.638327181,-0.435526311,0.237722591,0.198227525,0.20837602,-0.0148165571,-0.322192609,-0.259885401,0.465848625,-0.68359375,-0.0303191282,-0.288034528,-0.604600668,-0.343732566,0.856445312,-0.0193220265,0.363257855,-0.485342264,0.0490670912,-0.272405356,-0.0254575815,0.446163058,-0.256922305,-0.0664081052,-0.174784154,-0.682617188,-0.146978691,0.53818047,-0.57249999,0.367058009,-0.167463288,0.0937072262,-0.819957376,0.392578125,-0.0966662169,-0.18406105,0.0441898294,0.595189154,0.114745401,-0.249660328,0.754557312,-0.787760437,0.498046875,-0.251941979,0.112553768,0.0685331821,0.114969701,-0.189971432,0.426964134,-0.231942773,0.2734375,-0.525565922,-0.605201185,-0.0893168971,-0.110565767,-0.0866513997,-0.149386242,0.318531454,-0.57404387,-0.495231569,-0.183609143,-0.875,-0.20164901,-0.339936763,0.163628474,0.0215030443,-0.0141088581,0.431145847,-0.346653998,-0.319494903,0.246210635,0.153348908,-0.0613720864,0.0996900275,-0.0147034107,0.143011972,-0.166095346,-0.352587342,-0.335914791,-0.778459847,-0.484258145,-0.00791076571,-0.00389413,0.85546875,0.0715107173,-0.0539344437,-0.0832383633,0.102254294,0.198270082,0.329975337,-0.486201674,-0.108375214,0.406325698,-0.113269359,-0.0147866607,-0.377500951,0.102526233,0.494731694,0.0239990856,-0.369745344,-0.521278799,0.697443187,0.150876254,0.119897783,-0.195291787,0.337826937,-0.307549357,-0.683376729,0.135721162,-0.0879671499,-0.172350049,-0.306634247,0.259731472,-0.124399737,0.46988076,0.00287389848,-0.0303261764,0.091801405,-0.141629174,-0.186563566,-0.0747171789,0.158699766,0.214423075,-0.105245315,0.487304688,-0.093710795,0.403211802,0.205538154,-0.314261645,-0.406777859,-0.373158485,-0.215884492,0.0137227578,0.256917983,-0.55859375,0.000816003012,0.149912834,0.324923158,-0.0590312183,-0.218187943,-0.234532207,0.131297141,-0.00188145356,0.0480938666,0.0416062102,0.312478185,0.109629862,-0.397770584,-0.247120067,-0.0216653366,-0.0499845408,0.236804098,-0.111297071,0.208538488,0.111310989,-0.494196832,-0.0732516795,-0.0100402189,-0.142553136,0.131308392,0.0844609141,-0.279271275,0.444758236,0.0578266233,-0.202671424,-0.144030869,0.0460379459,-0.0903256014,-0.00259942282,-0.284237146,0.133314043,0.224617675,-0.105399318,0.0741690844,0.796875,-0.187998474,-0.732776999,-0.198706895,-0.276260227,0.387662768,-0.697088063,0.290931612,-0.0792651102,-0.270448625,-0.0286047217,0.333874643,0.42767936,-0.0456961356,-0.10592673,-0.253837317,-0.463876307,-0.421487898,-0.103251576,0.105939537,-0.149915949,-0.35168457,0.00801792834,0.110891193,0.11377541,0.61569941},{-0.27148438,-0.10685061,-0.37776408,0.11722718,0.10303241,0.16653107,-0.08540438,0.35421982,0.03247543,0.44520596,-0.5110869,0.21328889,-0.23097105,-0.16604622,-0.20212132,0.08914091,-0.38661024,0.47485948,0.02773443,0.36323363,-0.14214155,-0.06266522,0.19284278,0.55078125,-0.22365391,-0.21731289,0.65478516,0.16893412,0.6061663,0.3251286,0.02772796,-0.0732739,-0.30364883,0.19085798,0.11621418,-0.16789944,-0.4128125,-0.10674363,-0.09075159,0.0054833,0.63757324,-0.04904038,-0.08714461,0.15771699,0.34739926,-0.2803103,0.7988281,0.14992544,0.22563477,-0.5574544,-0.74698156,-0.5859375,-0.16107109,-0.14897092,0.04568064,0.35343215,-0.22749038,-0.3604188,0.25292578,-0.17284997,-0.09301813,0.01767355,0.6116536,-0.14455277,0.05618,-0.34754226,-0.14889309,-0.40990332,-0.21585608,-0.3644415,0.08837989,0.05442715,-0.3202412,0.5293445,-0.08324826,0.10185159,0.4110424,0.28118515,-0.03158853,0.08784121,0.6293403,0.2445743,0.38575426,-0.25060508,-0.21243572,0.44030285,-0.5400054,0.14356034,0.21884292,-0.05226537,-0.8917411,-0.04286335,-0.06590819,0.12840894,0.25011355,-0.139641,0.26078627,-0.04319923,0.28026795,0.3568934,-0.02465772,-0.5334109,-0.06562702,-0.13279529,-0.34960938,-0.25674492,0.08346558,0.85302734,0.05117287,-0.08813239,-0.05171607,0.04236026,-0.07011236,0.14890824,-0.02212861,0.3516129,0.2901164,0.02486529,0.5333402,-0.5022786,0.00903901,0.50777096,-0.6784856,-0.46598306,0.21384,-0.34194124,0.15222633,0.65625,0.19141948,0.17137937,-0.12479007,0.22990565,-0.18066406,-0.05388852,-0.31067908,-0.00316647,0.45788354,-0.40899542,-0.13864161,0.05093548,0.27243134,0.03371698,-0.3457584,-0.31171706,0.17331687,0.31544185,-0.5518153,0.37116277,0.25760382,0.04611241,0.16307889,0.14020288,0.08105101,0.12568533,0.42659506,-0.39262134,-0.07274655,0.54304385,0.07934721,-0.28031412,-0.6532552,0.15816864,0.06594539,-0.28323504,0.1166157,-0.8567708,-0.40855825,0.26760194,0.14552212,0.01772766,-0.37106735,0.09761356,-0.28422987,-0.08862155,0.10228814,-0.2416256,0.04369249,-0.2998263,-0.1006236,0.23731741,-0.3017578,-0.01785432,-0.76953125,0.13031773,-0.515625,0.04393774,-0.4160581,-0.8015625,-0.06929793,0.18606327,-0.4305367,0.3104764,0.5138148,0.16547091,-0.43521014,0.6823382,-0.2465689,0.06598235,0.25668424,0.22557385,0.75104165,0.07009145,0.78828126,-0.353488,0.1490359,0.05243971,-0.08400098,-0.0415076,0.19470982,-0.00199505,-0.12395746,-0.08932859,-0.6764915,0.40537968,-0.8701172,-0.49420798,-0.17629433,0.17284162,-0.05149191,-0.14988953,-0.99609375,0.02308401,0.03181591,0.32524413,0.07667192,-0.24506547,-0.50018424,0.00732466,-0.6855469,-0.6919271,0.32019117,-0.29102653,0.13916922,0.2802224,0.30955863,0.14599344,0.32205784,-0.32796684,0.23392925,0.18211922,0.3935107,0.5016276,-0.18602623,-0.8782552,0.08546791,-0.3379407,-0.17088039,-0.34290168,-0.34563446,-0.08794403,0.02607155,0.34769192,-0.18711156,0.12790185,0.17964858,-0.10989894,-0.60720485,0.12461108,-0.49491003,-0.3885795,-0.0509821,0.33588806,-0.11008301,0.890625,-0.2264744,0.15482576,-0.67838544,-0.07223289,0.23054922,-0.268523,0.29506263,0.30955908,-0.05263106,-0.08549997,0.21088666,-0.0759428,-0.08302729,-0.08783769,0.5806108,-0.3975883,-0.22558022,-0.13817807,0.6255859,-0.18988608,0.51871955,0.25299293,0.03830479,0.8003472,0.48628744,-0.6357422,-0.2588324,-0.10203995,-0.11254115,0.54472655,-0.05672054,0.4323525,0.12943412,-0.1885153,0.601454,0.02500025},{-0.23822486,-0.01842035,-0.00258434,0.7858887,-0.50777566,-0.3954133,0.24169794,0.1459558,-0.16898222,-0.5207201,-0.13575599,-0.29785812,0.36910307,0.28610116,0.05008077,0.00672806,0.3476394,-0.13318758,0.4463021,-0.00848121,0.4346747,-0.00301462,-0.16891283,-0.03867348,-0.06810203,0.0455653,0.2898168,0.27449054,-0.37318638,-0.3114285,-0.11964221,0.2501372,-0.24515635,0.01702026,-0.03744126,-0.11273756,-0.57393974,0.24707031,-0.1836156,-0.05480388,-0.05618641,0.5352515,0.36629465,-0.03638667,-0.55901986,-0.14648668,-0.17430203,-0.7998047,-0.01763692,0.45276988,-0.04740427,0.2686542,-0.44111082,-0.4606179,-0.03071659,0.22556703,-0.5139323,-0.51953125,-0.79464287,-0.09595085,0.28121647,0.04568589,-0.01717853,-0.15133187,-0.38780737,-0.17479403,-0.5371094,-0.1707977,-0.340707,0.06593259,-0.3565295,0.05999259,0.10648745,-0.23919462,0.07602904,-0.03180444,-0.37853262,-0.24746142,-0.35643566,0.18599015,-0.06807502,0.46626422,-0.05689742,-0.21143234,0.22125758,-0.04107426,0.06808615,-0.44060203,0.06573443,-0.0055891,0.3222132,0.20815194,-0.18844186,-0.76953125,0.07026738,-0.24720462,0.76497394,-0.23582205,-0.32814956,0.4716797,-0.07543829,-0.76605904,0.20153894,-0.1435443,-0.10177644,0.14497912,0.07689542,0.27828965,0.03807259,0.17617704,0.07878491,0.39532766,-0.12379079,-0.0021776,-0.06647819,0.13818747,-0.08644664,-0.15136434,0.48760736,0.14213578,0.3142303,0.18207423,-0.22499198,0.5548573,0.7285156,-0.81901044,0.0108892,0.4631107,0.02542476,0.05221637,0.26364088,0.27730307,-0.44443646,0.28614324,-0.08277197,0.7290039,-0.4970189,0.38503635,0.2822299,-0.06933311,0.14600112,-0.2529459,-0.2901547,-0.22151417,0.32035056,0.15425888,0.03806695,0.21245936,-0.28025913,-0.29978567,0.16945313,0.5704985,0.0547975,0.5095235,-0.7734375,-0.16891308,-0.40997624,-0.15576693,-0.21237361,-0.2724288,-0.14161944,-0.03154906,0.47239855,-0.10716871,-0.41963777,-0.29206628,0.24749179,0.08347251,0.25015518,-0.28707385,0.41870433,-0.43117356,-0.22848636,-0.2890482,-0.20358732,-0.643125,0.09122568,0.00695941,-0.2665718,-0.46385118,-0.4666695,0.2588058,0.12463058,0.26958245,-0.49242568,-0.06095771,0.08305775,0.17441836,-0.03080879,0.64797795,-0.140625,-0.15480651,-0.59971786,0.01141941,0.02654613,-0.17667325,0.63140625,-0.05418223,0.18116076,-0.68953806,-0.09307305,0.03757976,0.3065569,-0.5390625,-0.04370894,-0.35060194,0.19239788,0.19002612,0.60536593,0.10156319,-0.01361562,-0.2342893,0.08617926,-0.42753404,0.31640625,-0.21276407,0.07980146,-0.32242224,-0.42387953,-0.49995056,0.00715107,0.26262575,-0.2568522,0.02187461,0.11557916,0.24928635,-0.13030371,-0.41084248,-0.12849638,0.49476662,-0.29989225,-0.04537721,0.04384354,0.08717903,-0.2822218,0.08207912,-0.5185811,-0.2118765,0.06043127,0.30847937,0.43951854,-0.4994649,-0.21232463,-0.35835552,0.14645225,-0.18652087,-0.3748798,0.12896685,0.26079074,-0.3339646,-0.09857839,-0.11842858,-0.2538102,0.28619793,0.21048416,-0.32126772,0.03284857,0.6373698,0.06863423,0.37896246,-0.17627548,0.2392414,-0.16404499,-0.35351562,0.68572444,-0.50406903,0.17097116,0.43869928,0.38628724,0.37580568,-0.23091595,0.19630083,-0.014751,-0.10084014,0.0027864,-0.890625,-0.10815108,0.3221882,-0.06690193,0.53328955,0.13328029,0.10715183,0.00680404,-0.13374433,0.6628069,-0.39154094,0.47712475,0.3174105,-0.19922836,-0.14293256,0.5842014,0.02313597,-0.03079858,0.1188802,-0.04601086,0.0207562,-0.13574219,0.5467122,-0.13330232,0.01905753},{0.0776577964,0.0225487053,0.469166249,0.297926337,-0.657670438,0.254907668,-0.376928389,0.256770104,0.077592276,0.143059015,-0.236391455,-0.282169104,-0.195728853,0.44120419,0.579861104,-0.207003877,-0.189978808,0.286132812,-0.289206117,0.0251439009,-0.118169628,-0.469911993,-0.0613754168,0.266664892,0.162616953,-0.145996094,-0.3887209,-0.0590565391,0.297870904,-0.195807353,-0.208929703,-0.15531227,0.0583286323,-0.267661065,-0.00722756842,-0.0790803358,-0.280165941,0.489541322,0.193359375,-0.743164062,0.128861547,0.0286030732,-0.0788177773,-0.0673374534,0.524471521,-0.297826618,0.287244856,-0.246202841,0.509685338,0.0947447345,-0.128407001,-0.813701928,0.0764357373,0.0136950808,0.210464716,-0.145085707,0.0723066926,-0.0290946793,-0.159617454,-0.517609119,-0.0207310095,-0.235744432,0.0148904165,0.537500024,0.464801282,0.0504264124,-0.197782636,-0.0700882822,-0.0593820363,-0.397606373,-0.522357047,-0.0606384687,0.100640602,-0.489032447,0.00734736118,-0.229027361,-0.328092992,-0.378818572,-0.0078963032,-0.513599515,-0.606026769,-0.109076105,-0.417800725,-0.307640553,0.0822288841,0.0282306764,0.0500683263,0.228513926,0.133293271,0.107646637,0.407101899,-0.239290446,-0.647243917,0.250929862,0.16453211,0.136747718,-0.158697531,-0.368141621,0.457348436,-0.111369029,0.596028626,-0.335912764,0.104517482,0.308519036,0.103270613,0.308689803,-0.226676852,-0.0576137714,-0.490550309,0.212828889,0.9921875,0.112053201,0.782877624,-0.233415514,-0.228855938,0.709960938,0.450831205,0.179689884,-0.161182567,-0.338709444,-0.000630301423,0.643554688,0.0832227394,0.283149302,-0.233448178,0.0628097728,-0.182619914,0.252995163,-0.334910959,0.0668685809,0.286891192,-0.157207578,0.351489633,-0.0254734941,0.167548031,-0.436388224,0.159655765,0.299023449,-0.0091627771,0.194266945,-0.667317688,0.320243567,-0.0418503284,-0.069319509,-0.225402832,-0.0830627084,-0.0592306368,-0.0861801878,0.0422130078,-0.150390625,0.247039303,-0.0683410913,0.0130977649,-0.14305079,-0.209523007,-0.323173732,-0.325259507,-0.634576619,-0.0493022092,-0.197836936,0.0418537669,-0.304647088,0.0517380312,0.103985749,-0.0288970061,-0.663063228,0.857421875,0.169416755,-0.190908626,0.336013108,-0.130360976,-0.041038055,0.0703221709,-0.240236863,-0.186475486,0.0067231115,0.799804688,-0.362241417,-0.0693466589,-0.448379725,0.238745764,0.132306442,-0.274380952,-0.994140625,0.139611512,-0.000578196137,0.223795965,0.0245035049,-0.199801385,0.146513969,0.0771327317,-0.664496541,0.0753844231,0.280273438,-0.021504283,0.570241451,-0.234860927,-0.174360335,-0.481378436,-0.55793041,0.178160176,0.430565,-0.0249311756,-0.194824219,-0.213437393,-0.276414871,0.758370519,0.2494964,0.306737214,0.0527275056,-0.560717523,-0.0437744595,-0.293951571,0.334020823,-0.482611358,0.00869795587,-0.646728516,-0.124649368,-0.509602845,0.0707520694,-0.115208052,-0.309778214,-0.306551039,0.0837207213,0.506949484,0.329008549,0.244515166,-0.0331753865,0.0267330483,-0.154772684,0.0468803458,0.543465912,0.00451818109,-0.0972642601,0.0562953874,-0.320200175,0.34941265,0.586554289,0.186058462,-0.0455066338,0.301848233,-0.0678882971,0.195749283,-0.75,-0.676339269,-0.165442824,0.169878542,-0.309684455,-0.398424804,0.061884582,-0.322141618,0.0643820614,0.6015625,-0.462961644,-0.44864431,-0.673611104,0.0132234143,-0.5625,-0.00628559524,-0.0952698141,0.163555562,0.0554591678,-0.00528693758,-0.501205146,-0.213335022,0.430723101,-0.0477681234,-0.637055516,-0.474400103,-0.473778248,-0.361349583,0.404223174,0.21484594,0.714257836,-0.104206212,-0.238277018,0.486155778,0.135697171,-0.37491402,0.323194563,-0.10569033,-0.209001616,-0.592285156,0.483723968,0.0708215982,0.0113315303,-0.493578374,-0.412477344,0.249279588,0.536964715,-0.12792176,-0.132310614,-0.147471726,-0.22601223,-0.0982213616,-0.312629312,0.181112126,0.0756918788,-0.00490303012,0.195354894},{0.148417696,0.252970159,-0.487118155,0.276354253,-0.164066777,-0.114235252,0.205606043,0.2791695,-0.408245116,-0.249608412,-0.317461401,-0.286126882,0.556919634,0.258759826,0.105266422,0.254872382,-0.181205109,0.309473366,-0.389439642,0.393348366,-0.0503043234,0.168433696,0.497562915,0.467562288,0.32635951,-0.582543552,-0.178692907,0.0243742336,-0.051523637,0.283237785,-0.0856590718,0.290929139,0.0131851081,0.254873544,0.251940906,-1.08984375,0.388772041,0.0209706426,-0.257708341,0.0947386101,0.412254065,-0.355328619,0.400434315,-0.266578853,0.132829428,0.105713457,0.0181829426,-0.288021535,-0.715959847,0.0457497463,0.0120061096,0.96875,0.647135437,0.141120017,-0.0209864918,-0.179724395,-0.37885648,-0.275390625,0.00845060032,-0.0363795497,0.478257656,-0.195263118,0.565476179,-0.282261968,0.119412534,-0.359286219,-0.488209784,-0.447077364,0.278227061,0.00542221824,-0.257749736,0.388842374,-0.539407194,-0.0369372927,-0.3046875,-0.810677111,0.0988501832,-0.208492443,0.210422158,0.00450005336,-0.694411039,-0.0930179432,-0.290039062,0.41689828,-0.767187476,0.0651723593,0.528930664,0.323296934,-0.169436455,-0.499242663,-0.680147052,0.0610684641,0.198186904,-0.170424104,-0.365195036,0.153756112,0.216313243,-0.0257468,0.231881246,0.383295536,-0.412850827,-0.103765689,0.0534782298,-0.24462755,-0.431209415,0.00363822398,0.165471837,0.140644237,0.0168240219,-0.284246117,-0.303724706,0.277374387,0.248850018,-0.0854116604,0.202645212,0.420917958,0.434748828,-0.0352000706,0.0893064439,-0.361317456,0.080787994,-0.197682723,0.141078576,-0.205094799,-0.309413046,0.314453125,0.303719133,0.01120272,0.603515625,0.726262033,0.596679688,-0.52332592,0.0178015083,0.355618984,0.0720594302,0.0744335353,0.211454645,-0.105228625,-0.0348753482,-0.023433771,-0.0270853005,0.113303006,-0.368963748,0.129821092,-0.568437517,-0.316096216,-0.249323741,-0.766601562,0.0638831481,-0.29007414,0.623015881,-0.204511091,0.000610164949,0.0456533432,0.480020046,-0.505878329,0.257820308,0.97265625,0.280254126,-0.167010054,0.360274047,0.8359375,0.147995785,0.0817655846,0.148898333,-0.317435235,-0.150759012,0.3828125,-0.0920234621,0.392863959,0.499551743,0.534667969,-0.21428673,-0.266662598,0.304717094,0.0598399267,-0.382008284,-0.381820023,-0.0830231234,-0.106425725,-0.41802898,0.124628976,0.164616019,0.291015625,0.41710937,-0.628182888,0.28806296,-0.57411027,0.310457408,-0.378031731,-0.793836832,0.101540893,-0.48421225,-0.472460926,-0.163582981,0.828125,0.310546875,0.39738217,-0.415690094,-0.0649027377,-0.213407785,-0.0576969758,0.12135879,0.00933419913,-0.177235112,-0.214837477,0.369019926,0.180623993,-0.607519507,-0.192316115,-0.0193659291,0.241263643,-0.115466826,0.322310537,-0.286075711,-0.395950437,-0.342813879,-0.335976571,-0.00428211922,-0.550564229,-0.165970549,-0.414527535,-0.227435604,-0.144964248,-0.0898444653,0.0156833995,0.022075871,-0.538546562,0.179149821,-0.369164437,-0.361391962,-0.143566743,0.187525287,-0.206936494,0.513926625,-0.274354666,0.110818662,0.0298057664,0.315348834,-0.160629734,-0.41004774,-0.122293092,-0.154702902,0.382932693,0.200724781,-0.120152675,-0.256828129,-0.325219512,0.274407834,-0.446261168,0.544642866,0.219252169,-0.365234375,0.457109362,-0.342936188,0.113942951,0.294959426,-0.330057651,0.164571598,-0.517545044,0.0984186903,0.00511506712,0.312442541,0.445811182,-0.18400155,0.676757812,-0.208442211,-0.0264991298,-0.212383971,-0.0325705148,-0.419039816,0.494107246,-0.339995533,-0.0928137824,0.299797475,-0.011278525,-0.1704119,-0.179117545,0.0868999064,0.416987121,-0.446127892,-0.0229852237,0.764453113,-0.247540161,-0.655468762,-0.124850243,0.218207777,-0.127426311,0.318212897,-0.277239591,0.0294659603,-0.123084232,-0.35441941,0.1938418,0.210871577,0.461038172,0.662597656,0.13819088,0.2339755,0.270602047},{0.0418720841,-0.0294813178,0.00630162051,-0.17266731,-0.0754469335,0.250997484,0.397414446,0.234359503,0.413222671,-0.236704513,0.238650575,0.373422474,0.0372469984,0.0472434983,-0.93359375,-0.0224031564,0.0981792361,0.121105172,0.749348938,-0.423903257,0.309428483,0.557535827,-0.0448027253,0.0338009931,-0.208981663,-0.466067702,-0.288027555,0.678659558,-0.48604089,-0.0210678708,-0.0499775521,-0.0435579419,0.254956245,0.297930151,-0.197640106,-0.759548604,-0.030229466,-0.142038181,0.235862374,0.819661438,0.375855863,0.248945594,0.321194082,-0.206048444,0.170405403,-0.338867188,-0.189507276,0.106225289,-0.0428555422,-0.0990927443,0.0658642352,0.103066981,0.140126958,0.560407341,-0.190388992,0.0752071962,-0.147949845,0.393906236,0.351484984,0.0656573847,0.110822439,0.0392970964,0.476953119,0.18689923,0.531661212,-0.459808618,0.00259280973,0.11624568,-0.0898253918,0.276402563,0.682883501,0.123922393,0.352706909,0.486211509,0.034357857,-0.443270594,-0.288826495,0.250246972,0.282113582,-0.173307151,-0.227920488,-0.226548314,-0.544270813,-0.34782505,-0.0849099085,0.198182255,-0.355585694,-0.1557924,-0.300900012,-0.414854318,-0.443473309,-0.135714784,-0.734570324,-0.00809588656,0.294990569,0.0649513677,-0.116906367,0.177679047,0.343766272,0.544726551,-0.288104355,0.466950059,-0.0102430787,0.0783954784,0.470882297,0.137183636,-0.039162863,0.0318833664,0.181145445,-0.104232579,0.27723214,0.513378918,0.29000333,0.185013846,0.210478202,0.32825169,-0.178165451,0.129374921,0.319400221,0.306514412,0.208975524,-0.118192159,0.133336663,0.347749889,-0.419718057,0.300882459,0.143083647,-0.342820495,0.328131407,0.475694448,-0.537109375,-0.407424361,0.0242776889,0.331870228,0.130890265,0.321352065,-0.248864651,0.273395509,-0.165532544,0.695382237,-0.85546875,-0.246108189,-0.0944389701,-0.152766585,0.0939696953,0.393653989,0.261663407,0.0366388522,0.172778502,-0.165015697,0.340782344,-0.470828772,-0.254757613,-0.200272635,0.382771522,-0.00317591475,-0.459877819,0.0266403146,-0.117158778,0.141177073,0.251849592,0.182099596,-0.512222767,-0.119378969,-0.343699932,-0.525152445,-0.0739618465,-0.0165344682,-0.762152791,0.220686436,-0.864257812,-0.794270813,-0.347891062,-0.0773306563,0.241288438,0.000206105891,-0.453476548,-0.552559972,0.93359375,-1.0625,-0.899739563,-0.441288382,0.0896414816,-1.08203125,0.0656975135,0.070777379,-0.0881665573,0.596966922,0.182124197,0.525247693,-0.347491622,0.154344857,-0.272454977,0.270547748,0.0983983055,0.0693390965,-0.568278015,0.43367514,-0.402260631,-0.190427065,0.365195483,0.125072047,0.318533272,-0.0341086201,-0.26365152,-0.130868286,-0.260742188,0.501260102,-0.419870466,0.163622752,0.78515625,-0.282134742,0.136144176,0.154332533,-0.295913458,-0.343804568,-0.0364920236,0.142646,-0.810546875,-0.115692519,0.293909669,0.76953125,-0.172870874,0.195754394,0.10887669,0.339801073,-0.689732134,0.0822663456,0.168940857,-0.45892635,-0.00254888786,-0.136174679,0.22408466,-0.240748644,0.627278626,-0.214755893,-0.11642617,0.54906249,0.282197893,0.365220219,0.272404909,0.212877825,0.328089327,-0.162567765,-0.140132815,0.240170345,0.613991499,0.0215100814,-0.578625798,0.502644241,-0.4012748,0.210899681,-0.392737925,0.548828125,0.077388376,-0.00998887699,0.103811868,-0.206038252,-0.0718185529,0.432942718,-0.151858702,0.117621355,-0.180199549,-0.139625698,0.146939993,0.124860637,-0.630326688,-0.0110693276,0.263638616,0.243647784,-0.0825097635,0.368144751,0.14460215,-0.0393238477,0.8984375,0.0964426473,-0.177217931,-0.321254909,-0.174760729,0.212404624,-0.160726473,0.0455405973,-0.0285188965,-0.232284576,0.0568727888,-0.00108785892,0.408395857,-0.00407148572,0.111069061,-0.0237756968,-0.286021471,0.199746013,-0.417425275,-0.259796441,-0.95703125,-0.0817389861,-0.28322047,0.00713832583,0.129924074,0.408222765},{0.538589001,-0.398549736,-0.542629063,-0.027740052,0.7734375,-0.126276046,0.413241088,-0.129916891,-0.227586076,0.880859375,-0.0976869985,0.045656126,-0.22164841,0.268491536,-0.0287720673,0.199677363,0.259673655,-0.00217143632,-0.462131083,0.0749092773,-0.0566538088,0.0703265369,0.160666361,-0.0676110685,0.121853627,-1.1015625,-0.624644876,0.230483145,0.420998394,-0.632128894,0.0219145473,-0.508072913,-0.292864233,0.494333535,-0.376759738,-0.126950562,-0.193353489,0.29001382,0.485018373,-0.0625397936,-0.43708685,0.297909021,-0.194778398,0.327300638,0.8671875,-0.0446705036,-0.244593486,-0.47265625,0.311482161,-0.377672702,-0.249338657,0.254904658,-0.50579536,0.322276592,0.122549288,0.600260437,-0.110805199,0.117441073,0.231452227,0.307698041,-0.177742809,-0.0395658724,0.101715453,-0.429569721,-0.336889029,0.598772347,0.0673714578,0.0127968267,-0.124842338,-0.498426646,0.104707383,0.596628308,0.248841599,-0.345452726,-0.0271086358,-0.00506703509,-0.211921409,-0.577765822,0.056359075,-0.627642453,-0.114022039,0.528778672,-0.0226061046,0.240193263,0.14016667,-0.166496351,0.468673408,0.360336155,-0.0781532824,0.0207051039,-0.241614297,0.104953125,-0.479561478,0.113710269,-0.0149025796,0.197355345,0.574273765,-0.301731765,-0.0785310641,-0.305706263,0.494598776,-0.361295581,0.165991515,0.0107593201,0.314575195,0.4701823,0.849218726,0.0700648725,0.597192824,-0.0612660497,-0.646701396,-0.270510584,0.255859375,-0.0479700565,-0.623437524,0.0732737929,-0.339561224,-0.382822424,-0.575195312,-0.0572502948,-0.217229769,0.108344622,-0.0564209446,-0.170404717,0.129810467,-0.504085839,0.286000848,-0.329161584,0.715909064,0.346763402,-0.359375,0.212808028,0.681463063,-0.404134125,-0.546365499,0.177718014,0.643012166,-0.0620536096,-0.822656274,-0.398850143,-0.429335296,-0.146456867,-0.0239665955,0.278314203,-0.601128459,-0.385669321,-0.136749417,0.181186095,-0.50115186,-0.241191506,0.124195769,-0.245692015,-0.0208088625,0.415923029,0.850260437,-0.21086897,-0.123634629,-0.165431678,-0.17617026,-0.716308594,-0.553671896,0.0460070744,0.337890625,-0.0353888534,-0.0846960545,0.186458111,0.136242464,0.124633975,0.82421875,-0.142014503,-0.489384413,-0.39334327,-0.252944708,0.160625383,-0.0769077837,-0.548068583,0.621228456,-0.331036508,0.0793496445,-0.373963654,0.100612953,-0.550130188,-0.103985891,-0.20948346,-0.0817377791,0.115034007,0.133783162,0.546875,0.00615488738,0.0543948151,-0.620442688,0.260819525,-0.175250158,-0.0496960878,-0.641493082,0.10397952,-0.135735571,0.9609375,-0.0179427508,-0.116168983,0.258672923,-0.310609877,0.271494985,0.296698332,-0.274414062,0.0817879885,-0.138163522,-0.921875,0.032161437,0.00245077955,0.108864091,0.333893001,-0.606608093,-0.509915888,-0.739990234,-0.426768094,-0.0793546885,0.622961938,0.181132108,0.0299978703,-0.144532859,0.907812476,-0.48626709,0.208455086,-0.152785897,0.531947553,0.115015395,-0.395442694,0.673958361,-0.023763258,0.102501504,0.0583424717,-0.455391347,0.375010669,0.593349338,-0.231877252,0.40129742,0.0815466046,-0.504585624,0.122767389,0.0265403762,-0.196751997,-0.162635222,0.7578125,0.067893751,-0.237293735,-0.429542214,0.419866085,-0.427763313,0.330189735,-0.237787932,-0.243156016,-0.243164062,-0.17870155,-0.721679688,-0.149427027,0.452101946,-0.448856324,0.448752344,0.236806184,0.0406868644,-0.230361938,0.0798404217,-0.746874988,0.453813046,-0.0131872157,0.662109375,0.330827981,-1.0390625,0.219807103,0.0164843146,0.468712211,-0.672363281,-0.0632356927,0.290006191,-0.274450243,-0.569972813,-6.359689e-05,-0.620584249,0.293896586,-0.23591204,0.0910128057,-0.114761665,-0.0047267382,-0.171485946,-0.848557711,0.326321363,-0.247196749,-0.041758474,0.0156764742,0.127433926,0.324015826,0.0227697659,0.322155803,-0.335888863,-0.0569032058,-0.0661244318,-0.0189906042,0.274420053,-0.226095453},{-0.7480469,0.18510266,0.02094713,-0.33614784,-0.10669325,0.7890625,-0.1732828,0.5214844,0.05699011,0.07152964,-0.11548026,0.4663086,-0.06982537,0.5413005,-0.07589156,-0.05758431,-0.41200086,0.20115267,0.8203125,0.21830241,0.07471956,-1.1132812,0.31747302,-0.17824022,-0.03762879,-0.6594587,0.8515625,-0.48823687,0.64990234,-0.42678422,-0.31349763,-0.37697545,-0.23582251,-0.31531435,-0.59815705,0.22854188,0.03175901,0.00289539,0.44902343,-0.43543956,0.43162912,-0.00737848,0.42586195,0.16552591,0.14982979,-0.3623018,-0.10768973,-0.3123698,0.6292969,-0.1323533,0.14351061,-0.64453125,0.10300921,0.00381734,-0.5185731,0.18412971,-0.05909825,0.02140875,-0.06928258,0.26151553,0.02692254,0.16505958,0.08762874,-0.01016168,0.16403614,-0.41501912,-0.268482,-0.69889325,-0.18013881,0.23582467,-0.37245956,-0.22613183,0.38264626,-0.57351434,-0.4345612,-0.11473427,0.27436107,-0.18699218,0.01904248,-0.11087792,0.4419842,-0.12889238,-0.16505927,-0.2328965,-0.18700424,-0.02846627,0.6858259,1.0078125,-0.06110862,0.05783343,-0.36615953,-0.36345378,-0.00548662,0.04088093,-0.1391958,-0.04124894,0.37514773,-0.1248911,0.20363407,-0.21146236,-0.06232175,0.19091673,-0.09890974,0.07169206,-0.1762278,0.08471014,0.1298429,0.439395,-0.1191321,0.31237066,0.09306006,0.30858418,-0.6814236,0.25195312,-0.33667254,0.46030816,0.15721601,-0.4673713,0.27052101,0.07635101,-0.84244794,-0.22404605,-0.3349412,-0.01579527,-0.05093835,0.5608259,-0.01483071,0.2446225,-0.24718441,0.40443346,0.13574219,0.00129748,-0.6603065,0.06640815,-0.12187948,0.6133721,0.28125,0.0311723,-0.5760995,0.71882105,0.11200847,-0.11789761,-0.42587754,-0.12484206,0.19573362,-0.10353662,0.04365083,0.07108729,-0.06199051,0.28327507,-0.03545818,0.34958127,0.3992488,0.48153052,0.44160658,0.27143675,0.23535156,-0.30833825,-0.6964466,-0.10892326,-0.09519708,-0.03744084,-0.5510254,-0.22117117,-0.1615989,0.01161038,0.413066,-0.09155299,-0.0861291,-0.02461982,-0.39636835,-0.25285456,0.10397964,0.7269176,-0.04533694,0.03754405,-0.2128842,0.29893515,-0.7798549,0.2530078,0.06760798,0.08548485,-0.21871594,0.00546777,-0.02345463,0.15866874,0.3106501,0.18210413,-0.10918087,0.23345804,0.23099788,-0.1747739,-0.26463088,-0.29887575,0.16792473,-0.5878906,-0.5992187,-0.34591132,0.7671875,0.5061198,0.4948552,0.4798647,0.5912224,-0.2163434,0.01456494,0.06538574,0.63411456,-0.33500466,0.21043889,-0.14789818,0.1931691,-0.11771248,-0.72293526,0.2938628,-0.2505311,0.44625288,-0.16206267,0.04228566,-0.31944343,0.5349392,-0.270478,-0.26839256,-0.18111762,0.16306046,-0.60321516,0.04091074,0.06956523,-0.08446156,0.01499819,0.3183455,-0.59875,0.66875,0.15376192,-0.69492185,-0.3300434,-0.41993678,-0.1246097,0.42565104,-0.35444254,-0.06666178,0.08764956,-0.3926036,-0.31538463,-0.17041582,-0.02690585,-0.3486997,0.28925577,0.1631046,-0.11863576,0.1754074,-0.0578007,0.29669964,0.13769658,-0.04906338,0.17237869,0.875,0.04443885,0.23927066,0.00439718,-0.2547901,-0.43359375,0.01587396,-0.43831262,-0.6279561,-0.1018435,-0.0207652,-0.18066601,-0.41507712,-0.27243972,0.05396128,-0.34952855,-0.15909854,0.48354742,0.09590034,0.70057094,-0.67871094,-0.2060893,-0.23395467,0.0485599,0.16407216,-0.3672757,0.3029312,-0.2548045,-0.7327009,-0.1889347,0.22944808,0.06443743,0.28611603,-0.34765625,0.31149033,0.5452881,-0.40535763,-0.15428428,0.34855074,0.18543704,-0.00466558,0.37321568,-0.45762914,0.08542053,0.1552521},{0.69661456,0.07175011,-0.85546875,-0.18602084,0.09229615,-0.06541512,-0.38382334,0.00450736,0.51730686,-0.01984675,-0.21529792,-0.03083419,-0.10061098,-0.04536615,-0.23340909,0.02711597,0.531061,-0.31321615,-0.02965504,0.14303796,0.6547379,-0.08763955,0.03896947,-0.09564895,0.11551014,-0.07394926,0.3926479,0.11209856,0.03135866,-0.29588777,0.31262124,0.27934733,0.37296876,-0.5886549,-0.04578233,-0.6610026,0.12741911,0.11308715,0.01136068,-0.17529917,0.4735557,0.11819917,-0.04114047,0.11843105,0.39978382,-0.07003176,-0.44143498,-0.13478127,-0.21429205,-0.19578044,0.44683158,0.14300855,0.23158899,-0.20795113,-0.2202936,-0.07102364,-0.2492426,0.15138447,0.44488376,0.01829808,0.2411983,-0.4835258,-0.2461364,0.32719216,-0.30079725,-0.2417223,-0.55667746,-0.5157948,-0.45001382,-0.19816028,0.36316493,0.28423393,0.75716144,0.15963869,-0.16408527,0.15572439,-0.4698893,-0.23142558,0.23003325,0.09494552,-0.00783715,0.17631999,-0.21629299,-0.59891635,-0.6232639,0.1504152,-0.10375381,0.6231445,0.1387142,-0.01132737,-0.0648975,-0.04867884,-0.14752586,-0.22166608,0.3848633,0.07302253,0.19963461,0.36600825,-0.4139106,-0.2577665,0.11058042,-0.01622177,-0.21196002,0.32051918,0.3025461,-0.15868197,-0.14700451,-0.21834071,0.22553231,0.5900735,0.21231255,-0.00730194,0.5803786,0.04255717,0.02545116,-0.39555603,-0.38379663,-0.37109375,0.14647463,0.01631773,0.03185128,-0.14204462,-0.03698779,0.29513326,-0.4782745,-0.10671551,0.24363346,1.2109375,0.45297703,-0.00591568,-0.1454661,-0.30841127,0.19194765,0.03284238,-0.16555391,0.14842995,-0.43820244,-0.7319336,0.19037566,0.3075743,-0.08762985,0.02211585,0.03344917,-0.4812563,0.14893699,-0.14306918,-0.24059072,0.09155655,0.2851857,0.24503697,0.41207498,-0.49103516,-0.13385573,0.36148542,0.04324708,-0.03772349,0.18262526,0.46561965,-0.45794863,-0.4623794,0.07177331,-0.16804011,-0.32709962,0.49046758,0.13081597,0.22322458,0.25976562,-0.35365766,-0.22946352,0.03045717,0.6354167,0.83203125,0.25013587,-0.49064994,0.21971147,-0.30858785,0.4043631,-0.5348225,-0.02758657,0.04796217,0.301695,0.09198705,-0.02948547,-0.257709,0.32608816,0.17424877,-0.375,-0.01283822,0.6378038,0.10647769,0.20857476,-0.24559578,-0.13965797,-0.09201526,-0.40121564,0.11060707,0.26762152,0.1728199,-0.00584596,0.03426766,0.22410731,0.29488128,-0.15911567,-0.266529,0.06955034,0.30767286,0.17772552,-0.26274294,-0.04156424,0.17132683,-0.463179,-0.01878763,-0.17339072,-0.0693,-0.41003492,-0.26851982,0.03845137,0.04808006,-0.3808796,-0.4072042,-0.71875,0.12012886,0.55608976,-0.54645646,-0.14546092,0.20849253,-0.20120203,0.3515729,-0.09377316,-0.44110787,-0.38863075,-0.20754576,0.29495513,0.09717453,-0.1213634,-0.22357742,0.01519318,0.17436394,0.05150597,0.21041372,0.08225287,0.02236186,0.42750967,-0.1869928,-0.47058824,0.3320173,-0.5059443,-0.37725207,-0.01973584,-0.25494176,0.23388262,0.5599662,0.11156037,-0.15905611,-0.0257765,-0.4024579,0.39448926,-0.5134139,0.2378864,0.07493173,-0.73660713,-0.49199694,0.13819203,-0.4522435,-0.3183245,0.1410878,0.24208531,0.41214556,-0.30078557,0.45652488,-0.3174674,0.06371934,0.08005884,0.4141247,-0.03659807,0.08789969,-0.6041349,-0.36438698,-0.21188477,-0.08087216,-0.5226702,-0.14699699,0.52715224,-0.1074175,0.03711017,-0.52916414,0.1435567,-0.10671823,-0.36071596,0.35730574,-0.44817895,0.57046276,-0.55634975,0.13333005,0.13577779,0.07644247,0.11550747,0.02814329,-0.59244794,0.695638},{0.0903539062,0.775781274,0.0488360971,0.517697036,-0.258821547,-0.0957009047,-0.241195872,-0.114257045,0.558450818,0.81640625,-0.264742762,0.602678597,0.212928399,0.521552682,-0.554138184,0.657696784,-0.0708285868,0.114272259,-0.0773843229,-0.199222848,0.0257543363,-0.704166651,0.0844423696,0.109135844,-0.0756651834,0.200549945,-0.752929688,-0.798437476,0.363344252,-0.327162683,-0.725497186,-0.0368633866,-0.622135401,0.0944885015,0.174926758,0.217734724,0.0380302258,-0.344957203,0.43532151,-0.524816155,-0.307441294,-0.601310492,-0.166520596,0.194790021,-0.862500012,-0.234845504,-0.256822169,-0.154318571,0.530685782,-0.106175385,-0.0289692767,0.180657744,0.302809179,-0.0121192485,-0.229020327,0.154343098,-1.0234375,-0.60957706,0.146533117,-0.214931741,0.15528357,-0.317436337,-0.868749976,-0.119871423,-0.43921876,0.239112288,0.199778691,-0.179268003,-0.130791634,-0.294813365,-0.152865708,-0.611752689,0.363452941,0.0671515539,-0.521538913,-0.0385198593,0.169894516,-0.297867686,-0.0849069431,-0.0502982996,0.19827719,-0.0378195308,-0.0935256854,-0.125981674,0.0764380395,0.311450094,0.199651226,0.0629157722,-0.0971536338,-0.333911508,-0.136735678,-0.375071287,0.143096074,0.0470036007,-0.460156262,-0.0540839955,0.033636488,0.169467792,0.470751345,-0.0920393169,1.046875,-0.554853737,-0.4453125,-0.120126724,-0.236276582,-0.236810341,0.256955326,-0.271504402,0.0453933738,0.0608203225,0.0513587445,-0.171391979,0.23931776,-0.0967107266,0.0313680582,0.390449435,0.105666004,-0.218221724,1.09375,0.24559097,-0.7578125,-0.000669315807,0.632211566,0.794270813,0.624681115,-0.453005075,-0.408303052,0.436414927,-0.101816945,-0.450449497,-0.0920588672,0.138190538,-0.135754332,-0.20356603,-0.177258998,-0.126938328,0.0883687735,-0.325288326,0.029249642,-0.26381889,0.0150617827,-0.399268627,-0.808035731,-0.431300938,0.126976162,-0.0678130686,0.169817731,-0.286886156,-0.147022709,-0.268445581,-0.150872022,-0.307659656,-0.561866581,0.105461344,0.298786849,-0.256783694,-0.116185762,0.223194569,-0.375047624,0.298673123,-0.256741971,-0.318374157,0.248840824,0.127942204,0.426050633,0.319586545,0.0754857063,-0.221155524,-0.9453125,0.188474372,-0.297766656,0.280316651,-0.243606701,-0.680664062,-0.0910858512,0.308490962,-0.250241071,0.209611431,-0.733774066,-0.82421875,0.208142295,0.0695972815,0.101553015,-0.038337741,-0.408988208,0.642252624,-0.9609375,0.637586832,0.06765569,0.258838475,0.0654266179,-0.0342861079,0.319164544,0.0490221195,0.272473216,0.228556514,-0.313541681,0.0458661318,-0.353354543,0.11403349,0.0184656903,0.17087774,-0.575573981,0.12735945,-0.0898833573,-0.305667549,-0.279105961,-0.121847451,0.0533286184,-0.249263212,0.238208368,0.0949682742,-0.0747004673,0.227584183,0.0710417181,0.500239849,-0.758463562,0.242262438,0.345402658,0.320104033,-0.23004505,-0.500942886,-0.0304278973,0.254963726,0.0862447247,-0.340504497,0.274496347,-0.697395861,0.206977084,0.3671875,-0.116413288,0.83203125,-0.6953125,-0.160616592,0.731085539,0.325045079,0.250684172,-0.848307312,0.498548597,0.439095855,-0.18168132,-0.215782478,0.140610501,-0.0286460984,0.91015625,0.292862207,-0.237266496,0.229929775,-0.124166213,-0.116194926,-0.421875,-0.00841293857,-0.00888046529,-0.0727677494,-0.1169011,-0.0368604138,-0.0964136645,-0.0442523807,-0.0350928865,-0.278232723,-0.0311800055,0.071514003,-0.104270302,-0.0178030822,-0.329999596,0.04787229,0.755859375,0.50723803,0.0907666758,-0.0839980468,-0.338947386,-0.328806311,-0.377951145,0.0314132459,-0.055270154,-0.196748734,-0.0456651263,-0.00903346017,-0.0952497646,0.478355944,0.169397742,-0.0408995599,0.146476313,-0.0145531464,0.203601331,0.169995278,0.9375,0.170900509,0.190953076,0.327209681,0.813802063,-0.227081493,0.552951396,-0.0431803204,0.325120181,-0.665798604,-0.0759151727,0.244527876,0.0268054921,-0.204599604},{0.318455756,-0.230975464,-0.00889672618,-0.0354145765,-0.201185301,-0.180232823,0.0267787911,0.0375840329,-0.29203698,0.191415697,0.609902859,0.090769127,-0.143100113,0.133787677,0.296199858,-0.235233188,-0.125379071,-0.367277652,0.169317588,-0.248866558,0.329813689,-0.00981565379,0.0644827783,0.527925551,0.339736432,-0.794771612,0.22013095,0.395489395,0.172381431,0.137666076,-0.133819535,-0.448156536,-0.117658094,0.340730578,0.152912125,-0.153340101,0.262714565,0.280152828,0.356381625,0.143495977,-0.0213805512,0.204644382,-0.385989964,0.56370908,0.465188414,0.31995222,-0.0885990709,0.341570735,-0.0496913381,-0.591646612,0.505126953,-0.986718774,-0.341951698,-0.184104651,-0.396874994,-0.124190539,0.0961943269,-0.0247383062,-0.520984709,0.0129301203,0.101994723,-0.0507151112,0.285147727,0.0830211937,-0.0247154832,0.0571612306,-0.106153913,0.0500627011,-0.329881966,-0.0900362656,-0.0673082322,-0.0670944005,-0.249285236,0.269424707,-0.480625004,0.0567474142,0.231453612,0.137223735,-0.244144216,0.0372370705,-0.254951388,-0.345647961,-0.120168515,0.0496867932,0.230012834,-0.225629151,-0.0920039266,-0.265178025,-0.00796558522,0.0503024831,-0.0387223065,-0.321218103,-0.25680998,0.462890625,0.0278452039,0.387506843,0.295840591,-0.652209044,-0.0269124471,-0.0565264672,0.513346374,-0.0476005785,-0.160711884,-0.256852478,0.0247304123,0.569733799,0.368979931,0.134792387,0.0891474411,-0.0100211818,0.167534053,0.607766569,0.348616809,-0.075167045,-0.151878357,0.579380572,0.0612146445,-0.0282125603,0.370911449,0.0269938149,0.134677202,-0.0228307284,-0.32143864,0.139641091,0.33118242,-0.382838547,-0.196264967,-0.390116364,0.139123201,0.595624983,-0.189467698,-0.0910448879,-0.12373507,-0.146894455,-0.33600077,0.303700447,0.326145113,-0.963281274,0.0604756661,-0.490297377,0.255859375,0.0923022032,0.135365203,0.701171875,-0.2890625,-0.406174868,0.178777039,-0.406108797,-0.536690831,-0.701171875,-0.524857938,0.150299415,-0.76126802,-0.111548781,0.0898502991,0.0323322639,0.309512854,-0.186974153,0.576480269,-0.0421072319,-0.696831584,0.319298983,-0.106694408,-0.208497211,-0.331949115,0.107474193,0.0552977175,0.0290592778,-0.113529049,-0.441758454,0.25776878,-0.0547373854,-0.138695896,-0.143498316,0.291882932,0.339070648,0.231435522,-0.408203125,-0.837239563,-0.0216484666,0.340762854,0.0145736178,-0.322453618,-0.444026679,0.614531279,-0.350395799,0.665736616,0.282173485,0.351605892,0.678635836,0.322296143,0.0890932679,0.364130437,-0.310465008,-0.496626407,0.126968622,-0.635742188,-0.148398742,0.702414751,0.662286937,-0.182101846,-0.00228219759,-0.109183371,0.237188354,-0.332856715,0.427321732,0.28614831,0.261611164,0.262792975,-0.185002893,-0.00580399949,-0.0681393221,0.293024808,0.235824242,-0.0639858469,0.466591269,-0.417957604,-0.234920472,0.0272253305,-0.324140936,0.345643938,-0.0429857634,0.411283553,0.470683396,0.355528533,0.159221381,0.694411039,-0.205049902,0.497802734,0.158144534,0.370254397,-0.0306717828,-0.0683315843,-0.00946661271,0.0378253199,-0.0626290292,0.0255806688,0.0427433364,0.289983511,0.278268427,-0.0110729784,-0.0176232904,0.0162116252,0.6328125,-0.555197001,-0.0763752311,0.158686683,-0.613581717,0.00955918897,-0.133821949,0.0669331774,0.077665709,0.173790559,0.445165485,-0.0988624766,0.218754515,0.0520185456,0.0532393791,0.659801126,-0.00507378718,0.361205369,-0.0817915723,-0.0717903301,-0.8828125,-0.000793728512,0.162152171,-0.0656962842,0.124209166,-0.0347880311,-0.394430816,0.00556141231,0.480567217,-0.0343215205,-0.0231686495,0.537109375,0.102357417,0.380776256,-0.218702629,0.478685468,-0.424386173,0.234282151,-0.164564401,-0.42396763,-0.0448320545,-0.13615106,0.0788453817,0.0505382046,0.0311378632,0.19871521,-0.0663827509,-0.106650114,0.118859038,-0.00625857385,-0.6484375,0.100097656,0.167437747,0.0509522893,-0.550868034,-0.375165254,-0.400253087},{-0.60300165,0.17575486,-0.19379166,0.3623274,-0.11965545,-0.13522518,-0.06609565,-0.26270023,-0.04642323,0.2685002,-0.6852214,-0.00711984,0.31439796,-0.05171086,-0.11009403,0.54094976,0.21639518,-0.16114652,-0.00723911,-0.10428011,0.10164229,-0.55800784,0.59757316,-0.01015106,0.08057474,-0.51345956,-0.45711616,-0.10377919,0.1860506,-0.217816,0.12057962,0.31835938,0.20068936,-0.34062028,-0.16502415,0.531064,0.81752235,0.04308813,0.3731906,0.07738454,-0.6085069,-0.26260653,0.34867707,0.4600586,0.00854126,-0.08392929,-0.2890022,0.1729133,-0.08640093,0.17722507,-0.8683036,-0.4453508,-0.05354551,-0.2704761,-0.04012766,-0.06064807,0.06548189,0.24967283,-0.8489583,0.339681,-0.5386845,0.6889881,-0.52496606,0.6816406,-0.1367285,0.33578405,-0.07006861,-0.02008594,0.21193033,1.0546875,0.18508747,0.55425346,-0.06959147,0.58325195,-0.49608326,0.05043337,-0.3649635,-0.0152447,-0.2084439,0.0439325,0.03833162,0.44009593,-0.6447368,-0.00773478,-0.54584706,-0.12310142,0.3143911,0.10227349,0.10232937,0.20262855,-0.54674184,-0.15426546,-0.26458636,0.05321397,-0.09104204,-0.5663325,-0.26370615,-0.2744342,-0.0713359,-0.14452359,-0.35059622,-0.22604619,0.14157738,-0.20159948,0.05602743,0.02352484,-0.31064683,0.3827234,0.3155262,0.00804252,-0.5197459,-0.10613775,0.22167534,0.12794198,0.11989848,-0.3202611,0.1215881,0.1376758,-0.38668188,-0.5856291,-0.37102073,0.67402345,0.15767533,-0.1298936,-0.06334746,0.00520745,-0.06542794,-0.55027175,-0.34966263,0.78222656,0.18357484,0.8769531,0.27346483,-0.29887012,0.06259065,0.0223875,0.4777344,-0.62109375,0.46273082,0.38268423,-0.2746045,0.26352465,-0.17679256,-0.88671875,-0.12891501,-0.20065595,-0.44329736,-0.16457158,0.10963093,0.06123703,0.5332678,0.4462753,-0.2998047,-0.15867731,-0.10401712,0.13032041,0.05928625,0.44893736,-0.3623047,0.5276367,0.3757155,0.27449796,0.3183432,0.2032181,0.49168786,0.05700776,0.08911314,-0.40604895,0.05183684,-0.27526286,0.03322674,-0.4513579,0.18555254,-0.12417294,0.12233549,-0.02439174,0.02490756,-0.56640625,-0.1860652,0.10841604,0.03846652,0.63932294,0.11330778,0.24467154,0.01887336,-0.3184052,-0.03628617,0.40620404,0.24510542,0.00298483,-0.11812224,0.61328125,0.05795782,-0.03710865,0.03221764,0.08955249,-0.22602618,0.28816512,-0.1108596,0.10571884,-0.2990257,0.3904462,-0.0307085,-0.18500452,0.10692744,0.32198194,-0.43993145,0.10935594,0.35835195,-0.29976332,-0.32331017,-0.14499597,-0.13526253,0.21980567,0.05404962,0.04796661,0.13571917,0.519465,-0.11814237,0.41693607,0.05051456,0.3202884,0.05634017,0.73220485,-0.25597426,0.22125067,-0.01764027,-0.1988379,-0.51604956,0.6503906,0.23491266,0.43854803,0.08296533,-0.2754502,-0.0247948,0.10742341,0.09860203,-0.14355673,0.043584,-0.05311108,0.1327703,-0.11543623,-0.56263024,-0.15621911,-0.04548833,0.24879077,-0.45582443,0.08179516,0.53808594,0.52761006,0.18560995,0.36140993,0.26464102,0.39261702,0.08958744,-0.28218484,0.28416276,0.06936321,-0.9609375,0.19871303,0.33204702,0.39837015,0.18214819,0.25191936,-0.06613655,-0.09616823,-0.12579171,-0.25485012,0.15184249,0.10514994,-0.15920174,-0.14254865,-0.00911424,-0.22157557,0.10720497,0.28118396,-0.00118785,0.07789221,0.27330625,-0.34253216,0.3398606,0.05310434,0.8192472,0.11668682,0.36822608,-0.40846354,-0.44873047,-0.2829881,-0.2685408,-0.10010365,0.08715139,0.48734275,-0.16604501,0.20266785,-0.37980768,-0.14747503,0.21883193,-0.08473591,-0.20706454,-0.08401016},{-0.116213813,-0.341863662,-0.0283605773,-0.262657762,-0.140597448,0.181207836,0.131850496,0.423577011,-0.259817034,-0.225973755,0.498744428,0.163904145,-0.367277294,0.0397805125,0.727213562,0.377961487,0.0379324257,-0.236523435,0.199713573,-0.24169229,0.214288726,-0.306528628,0.0301272515,0.305606604,0.623883903,0.383905321,0.0148960054,0.637063444,0.254956305,0.672851562,0.207869589,-0.723632812,0.298682481,0.280237019,-0.18066597,0.153239295,0.0225429833,-0.314391106,0.0913155898,0.268565327,0.307572186,-0.147445291,-0.034547247,-0.359298408,0.0448020138,-0.127995789,-0.396452695,-0.324175119,-0.0793130472,0.136720315,-0.00848803949,-0.0519659854,-0.358392656,-0.248784319,0.0546619706,-0.454286993,-0.202647701,-0.0737195909,-0.063220799,-0.000789895537,-0.185106933,-0.177222848,-0.147442386,0.0912748352,-0.175762266,-0.264572561,-0.779296875,-0.028953908,-0.505894899,0.184596434,-0.0183131173,0.00818293542,0.272508025,0.400956482,-0.216793969,-0.468600631,0.00948596746,0.351466209,0.297921658,-0.166037813,0.182175234,-0.19440937,0.000946337823,-0.422876596,0.16356957,-0.305646628,-0.0113795325,0.662165165,0.672776461,0.608984351,-0.475283474,0.0219787601,0.135291263,0.0594336949,-0.26649639,-0.676240802,-0.167936876,-0.104504377,-0.347457319,-0.382847369,-0.527483284,-0.175280094,0.0690487698,0.102028862,-0.0646972656,-0.293968022,-0.440017372,-0.0276178196,-0.845703125,0.0266017858,0.0337764286,-0.139665633,0.490861297,0.52734375,0.167922318,-0.413069934,-0.188898861,-0.275390625,0.404451072,0.179767773,0.0224021133,-0.0810684562,0.0144867916,0.462469965,0.419839025,-0.0250051878,0.0240027886,0.335953504,-0.0864124224,0.0730008632,-0.0399167128,0.108388633,0.406427562,-0.259773225,0.507133126,0.115712941,-0.0878928304,0.557226539,0.137690112,-0.0160431433,-0.074506171,-0.162124857,0.0842323229,0.165536806,-0.0106114605,0.940625012,-0.521541834,0.0505400114,-0.453177303,0.229506135,0.139643118,-0.171941236,-0.309554994,0.237291202,0.559416115,0.240399495,0.122982182,-0.0231558271,-0.228568271,-0.115502231,0.0338425301,0.404427081,0.3984375,-0.729352653,0.306717217,0.537202358,0.53515625,0.177256793,0.16603376,0.361129016,0.326993197,0.222710371,0.142094553,-0.0101445355,-0.225151166,0.600000024,0.447220564,-0.314353913,0.701822937,-0.544737637,-0.0783604681,-0.0907956362,0.248728335,-0.231061772,-0.360598654,0.8046875,0.193815455,0.166044533,-0.383959562,0.0925062448,-0.677884638,0.285069436,0.225088224,0.319418162,0.0866364315,0.732776999,0.216224045,-0.725060105,0.0171687026,-0.859375,0.453073144,0.444939762,-0.325212002,-0.103043981,-0.515395224,0.156726077,-0.0286142249,-0.0744583979,0.318487614,-0.372810781,0.0771738887,0.740513384,0.111784063,0.421010494,-0.349532634,0.382930875,0.339681,0.279227883,0.391856313,0.123737685,0.0583486147,-0.37131989,0.137192845,0.0423704386,-0.0364793725,-0.0291097853,-0.0690638497,0.507757485,-0.00631872565,0.181119323,0.140634105,0.277365297,0.177241936,-0.333916545,0.221226141,-0.107925735,0.0749682933,-0.117165238,0.297795564,0.0847120434,0.151406139,-0.204998523,0.0847826079,0.171342075,0.215272278,-0.0705973282,0.123788834,0.931423604,0.408469468,-0.517675757,0.742897749,0.395575941,-0.0790845528,-0.0969341695,0.408320606,-0.0661548451,-0.011004949,-0.280285209,-0.0824873671,0.186049372,-0.453125,0.43647781,-0.117179476,-0.794034064,0.202528715,0.325108439,0.374842852,0.0468299612,-0.0526313297,0.060458269,-0.141592443,0.185024232,0.0561512411,-0.122607589,0.128913522,-0.638247311,0.0560430139,0.230070561,-0.0110641057,-0.108594783,0.0389468707,-0.183560073,0.0330504104,0.00119196344,0.272506863,-0.270601302,0.361546755,0.147493988,-0.191935837,0.265625,0.0543138459,0.134274259,0.00587291783,-0.365277767,0.400525987,-0.0306139626,0.0447901152,-0.477685541,-0.529134095,0.0443890952},{0.29204762,-0.00524614938,0.369924724,0.98046875,-0.293876916,-0.347747952,0.8671875,0.681640625,0.101037383,0.0169003196,0.107975096,-0.136686683,0.196775928,-0.454589844,0.397786468,0.298828125,-0.326206744,0.16992937,0.382797718,-0.00244868197,0.113310032,-0.244207621,-0.086422801,-0.423992604,0.220675677,0.232344374,-0.366205871,0.105726235,-0.189958692,-0.237702698,0.2772232,-0.123910174,0.358322531,-0.3046875,-0.451111466,0.392711908,0.121826515,0.217795491,-0.150865346,-0.0188377742,-0.253876209,0.100665018,0.413989633,0.203556761,-0.133268714,-0.415013075,0.413671881,0.228079289,-0.306635201,0.5234375,-0.0730425045,-0.196834326,-0.582208812,0.196702331,0.218297973,-0.0336809084,0.234894305,-0.1757797,-0.3359375,0.15854378,-0.0499107167,-0.0964286178,-0.215817556,-0.720252395,0.659895837,-0.280206859,-0.034789674,0.626302063,0.202534884,4.03716222e-05,-0.228570074,0.350732863,-0.0754520521,-0.369309634,-0.157740459,-0.0634678155,0.383699208,-0.00871019717,0.0720020533,-0.0302680098,-0.194715485,0.0937721133,0.0239397604,0.638411462,-0.266524047,-0.022623647,0.8359375,0.42283538,-0.0416294038,-0.85546875,0.0674269274,0.335227281,0.113540098,-0.552576005,-0.0617352761,-0.361244112,-0.129407048,0.0147973085,0.498703688,-0.315439433,-0.336081415,-0.167469501,0.532885194,-0.12578842,-0.0233694632,-0.388553828,-0.171421394,0.00024738643,-0.0764475167,0.0314184017,0.340748847,-0.402293026,0.131807625,-0.216296002,0.519363821,-0.212903112,0.0762278438,-0.0602827445,0.0615115128,-0.00361762103,0.127004147,-0.0668900758,0.0494383238,-0.314446479,0.137295604,0.421489865,-0.436523438,-0.110102244,-0.298945904,0.0184709001,-0.161154374,-0.637398124,-0.210457116,0.042814292,0.399290264,0.288955599,-0.129874572,0.193831593,-0.0806198269,0.32909283,0.350472957,-0.193346307,0.331048608,0.604709208,0.203712463,-0.209478319,0.0306534264,-0.140572369,-0.0805941895,-0.498531252,-0.310250193,-0.111853734,-0.0722551793,0.330945343,0.00435970724,0.153336316,-0.286123008,-0.440523714,0.197700575,0.246559843,0.00111131999,0.174766213,0.589364052,0.570503056,0.0839827657,0.288064718,-0.049885951,0.00108356809,0.342211187,-0.348532647,-0.685231864,-0.20414333,0.340865374,0.0663977712,0.346630365,-0.61349237,0.537172377,0.10794878,-0.0761465207,-0.12791571,-0.18509388,-0.0124827633,-0.390520364,0.583984375,-0.566964269,-0.0173386093,0.0163641199,0.0847103372,0.418716043,-0.14007549,-0.501885772,-0.0429783911,0.0688689202,0.659598231,-0.600390613,0.0808193609,0.345749259,0.381455451,0.206551954,-0.181642711,-0.263608366,0.0644307733,-0.00208350713,-0.370101184,0.0265216548,-0.685937524,0.223636031,0.067627877,0.220754668,0.308612615,-0.401260942,0.587968767,0.00383472326,0.171295851,0.244083181,0.259662569,-0.0240738131,-0.305634469,0.161180288,0.239789173,0.201228708,-0.25885883,0.687011719,0.121858597,-0.469726562,0.185998216,0.16598627,0.339808464,-0.105957031,-0.383711368,-0.144510955,0.491391778,-0.0920474455,-0.221136391,0.533061624,-0.406135112,0.18702969,0.150383711,-0.115021437,0.23577939,-0.0913085938,-0.272537977,-0.739062488,-0.787760437,-0.0350624248,0.653645813,0.357227951,0.509886205,0.180709764,0.281187981,-0.111335561,0.0590814501,-0.206123501,0.369095325,-0.374247223,-0.460913688,0.00806023739,0.291266024,0.731445312,-0.188895091,0.211437091,0.274396032,0.281236768,-0.0949829072,0.378978133,-0.227883458,0.49879092,0.220408767,0.0710777715,-0.21093066,0.30088976,0.147471845,0.0333815217,0.323307842,0.218202695,-0.099098593,-0.0729739815,0.504254997,-0.723721564,-0.122570843,-0.299809396,-0.223590553,0.302805573,-0.12695159,-0.0140387677,-0.34976992,-0.7890625,-0.213263571,0.240281776,-0.154644325,-0.085480541,-0.142065182,0.0849708021,0.683072925,-0.239753649,0.785644531,0.394466132,0.586588562,0.18071641,-0.0402683541},{0.209969386,0.497584283,-0.393802464,-0.410043567,-0.0954633281,-0.143545926,0.513392866,-0.396330744,-0.30452475,0.358358204,-0.440354556,0.155196622,0.663574219,0.16115652,-0.441228688,0.106709927,0.466680855,0.552517354,-0.346445322,-0.134741381,-0.0859415457,0.0419030041,-0.0340727679,0.0876702964,0.690234363,0.129342496,-0.24964048,-0.65625,-0.630078137,0.619357646,-0.108883649,-0.173890457,-0.328954518,-0.195785284,0.6015625,-0.19867222,0.0678621233,0.375909835,0.6328125,0.554231763,-0.241481304,-0.293810844,0.0724944547,0.842447937,-0.143562853,-0.00632425072,-0.565429688,-0.336803406,-0.00789114181,0.558863163,-0.15672943,0.0731851161,0.414163023,-0.380847543,-0.137671173,0.303758562,-0.17182596,-0.268515617,-0.208988994,0.208853707,0.343449533,-0.104011655,-0.379023641,-0.3046875,-0.013243515,-0.108161695,-0.370230049,0.67693013,0.122391775,0.342827678,-0.238692075,-0.467371315,0.291857213,-0.262670279,-0.630918562,-0.5078125,0.132334664,-0.400244147,0.542075872,-0.577008903,0.0146394484,0.0350310951,0.205545768,-0.113788009,0.385762751,0.0222785976,-0.086942248,0.509594738,-0.269567251,0.191449374,-0.392441869,-0.0848897696,0.0949587747,-0.142039269,-0.188062429,0.406005859,-0.639648438,-0.232935637,-0.21534434,-0.505907774,-0.111528181,0.62109375,0.0856966004,0.0528375953,-0.0184038039,0.00931598432,0.626880765,1.06640625,0.450181544,0.143993944,-0.0171108264,-0.184570312,-0.312487245,-0.109641619,0.609821439,-0.247547805,0.551711321,0.405633211,-0.431565493,-0.0382889733,-0.449051827,0.485766888,0.124844283,-0.161551133,0.234870329,-0.328221202,-0.325246364,-0.270407528,-0.947265625,-0.386884987,0.204081044,-0.0597764961,-1.1015625,0.253008723,-0.146498069,-0.0739815086,-0.026521232,0.241168216,0.149395496,-0.581445336,-0.0629076138,-0.27240321,-0.200193182,-0.132308573,-0.271394849,-0.488017321,0.478298604,-0.0529799238,0.612680316,0.206517264,0.0629080012,0.00904661324,-0.0571367368,-0.231016025,0.500469744,0.225006327,-0.00117483479,-0.467565656,-0.278369278,-0.675362706,-0.230106786,-0.624289751,0.0405500606,0.0646851808,-0.0235126019,-0.2578125,0.331969321,-0.150861725,0.648925781,-0.116454512,0.294956744,0.17479758,0.0404934101,0.790039062,-0.162190199,0.469188452,-8.28488774e-05,-0.28023234,-1.09765625,-0.139590219,-0.241765305,0.160608649,0.0417180732,-0.100853749,0.179645717,0.120788321,0.298750013,-0.106675729,-0.72265625,0.430594295,0.102809452,-0.0876522511,-0.397425413,-0.119890995,-0.241148263,-0.016414687,-0.0187172219,0.0306551065,-0.50379622,0.12176282,-0.222731367,-0.0471131876,-1.03125,0.3359375,-0.102267273,-0.0523217693,0.426559448,0.119164996,-0.497636706,-0.0644731373,0.501201928,-0.0817981437,-0.336953461,0.448040128,-0.396422684,0.154747352,0.310446471,0.02667352,0.628736436,-0.461914062,0.448939741,0.517236352,0.581650138,0.290046364,0.154822916,0.07690157,0.172849491,-0.0273742676,0.598090291,0.116427593,-0.444521964,0.0991797149,0.324340135,0.290014029,-0.0991604626,-0.117899477,0.597490013,-0.659531236,-0.161731914,0.0993777961,-0.151342303,0.890625,0.513619065,-0.0937076584,-0.51171875,0.450714111,-0.584179699,0.733455896,-0.0121178972,0.0244911462,0.635869563,-0.674072266,0.153275803,0.311459869,0.117202342,0.133810341,0.43140626,0.0267508589,-0.241168573,0.0923031569,0.305622518,0.365160882,-0.314360112,0.0849311277,-0.0866802186,0.568115234,-0.299915373,-0.233389094,-0.801269531,-0.794084847,-0.122077025,0.258727908,0.0284165256,-0.211388215,-0.0424734578,-0.0457673743,0.308643401,-0.386766374,0.308562756,-0.77734375,-0.0356245972,0.0847097933,0.0511136279,-0.0969185531,0.22905457,0.0240760036,0.304663956,0.447489172,0.799107134,-0.37125057,-0.163539797,-0.248884812,-0.0560128689,0.027983848,0.0737019628,0.280109942,0.316392541,-0.0127022499,0.513878703,-0.0575938113},{-0.293020159,-0.154736131,0.123935945,0.245145395,0.234447807,-0.465666115,0.493954599,-0.159631073,-0.0159184914,0.505814672,0.00282174442,-0.155733213,-0.467760056,-0.0761204362,-0.195307031,-0.313267291,0.679501474,0.5390625,-0.374962807,0.160671964,0.238390699,-0.215869546,-0.246059239,0.350535423,-0.201629251,0.0334404483,0.128333405,0.251953125,0.056143824,-0.337901592,-0.292091995,0.0217185915,-0.317395329,0.116742656,0.658593774,-0.187481984,-0.220110893,0.03501321,0.558670342,0.461025625,0.0883574709,-0.382898659,0.720563591,-0.673177063,-0.373014867,0.0918316767,0.203053698,-0.0546700954,-0.238723963,0.149396524,0.280278236,-0.551011026,-0.100376159,0.599354625,-0.497716755,0.10863889,0.010172151,-0.220244795,0.212403506,-0.356359869,0.0123331659,0.307583511,0.0512665212,-0.666232646,-0.47265625,0.159669206,0.644042969,0.0925582945,0.250655323,-0.422582179,0.394777387,0.254864395,0.200213492,-0.0959604904,-0.325142056,-0.0117319422,0.444134891,-0.556222081,-0.234784767,-0.0746830925,0.032824222,0.0707898736,0.694335938,-0.220211282,0.847098231,0.274410933,-0.0485520773,-0.0616490208,0.545212746,-0.228522226,-0.122569665,-0.179651588,-0.622903943,-0.35854435,-0.40625,0.571149528,0.0206006765,0.348721594,0.223135561,-0.151333779,-0.268507153,-0.264655471,-0.00365168555,0.220246941,0.426641941,0.0344136395,-0.0881706476,0.092004396,-0.466543704,0.496132821,-0.377974957,0.442589968,0.44804424,-0.646267354,-0.012487879,0.178642631,0.0331750102,0.0782708824,0.183564976,-0.146493137,-0.050254263,-0.176778227,0.0976553485,0.162530109,-0.335916162,0.11324314,-0.0703606233,0.0744406283,0.127892345,0.0358643942,-0.43378678,-0.119383454,0.0602034219,0.000610731659,0.256949246,0.16505596,0.13335453,0.0622181408,0.48003906,0.596134841,0.0814923942,-0.112056836,-0.393529475,0.388779283,-0.351490825,0.256843746,-0.14255242,0.0846956372,0.0715127289,0.379763722,-0.354646385,-0.126945943,-0.0451887138,0.732167125,-0.00658967346,0.407920063,0.47283709,-0.107443489,-0.445217222,-0.215305328,-0.398406744,-0.207996994,0.126926124,-0.266676128,0.218249813,-0.632626474,0.0605486855,0.247008592,-0.464068472,0.0764591321,-0.319343448,0.114737026,0.283188343,-0.468449533,0.0113675725,-0.0788687468,-0.0705237687,0.167850807,0.104441583,0.119607516,-0.370998472,0.227916062,0.00110149686,-0.776227653,0.237764984,0.184560895,-0.612548828,-0.132830352,0.0954634994,-0.213919595,-0.417001307,0.123972557,-0.0878874809,0.299848527,0.393612713,0.153343409,0.193337619,-0.0484324954,0.00772602251,-0.38370648,0.12839818,0.0511422753,0.347992986,-0.2578125,0.0203442071,0.540429711,0.154272467,-0.406360984,-0.0297429189,-0.140673742,-0.0720032677,-0.488842249,-0.14841862,-0.782118082,0.13915728,-0.361370593,-0.117055342,0.0320196487,0.459228516,-0.103532135,0.21519278,-0.439991921,0.130378187,0.108162463,0.202602059,0.369934767,0.0595649444,-0.139279112,-0.401115507,0.266614407,-0.329930156,0.266548455,0.0763920397,-0.304744124,0.193886846,-0.124184094,-0.0567554124,-0.124683261,-0.25386253,-0.421827942,0.145550504,0.314534992,0.0274015255,0.546316981,0.124815106,0.200079635,-0.678498626,0.11944595,0.666015625,0.473671883,0.0808662549,0.114317864,0.509765625,0.121814467,0.529485881,0.027126383,-0.111078992,0.371702522,0.294691503,-0.0354149081,0.034428481,-0.149885818,-0.403301656,0.0151844071,-0.139139608,0.181662932,0.150393575,0.469594598,-0.158190846,0.0903131291,0.125460073,0.0584882088,0.224086747,0.361245364,0.494027942,0.0206291191,-0.31730628,0.115793072,-0.154334888,0.647851586,-0.0207925718,-0.571655273,-0.354423642,0.324141949,0.305659831,0.0929828957,-0.607219815,-0.183476821,0.00631850306,-0.213966087,0.27946943,0.184049949,0.361552268,-0.147961974,0.432465285,-0.170414895,-0.00298828189,-0.349659681,-0.082954511,0.00337060215},{-0.0273338947,0.139157757,0.41204834,-0.0832609534,0.381847441,0.645951688,0.137696981,-0.541313589,0.501424849,-0.116528943,0.454427093,0.0656399578,-0.180596009,-0.210439771,-0.284211546,-0.479631692,-0.287061572,-0.115214132,-0.0243221503,-0.605329216,-0.0631739199,0.258775949,-0.113048591,-0.0890985206,0.525185049,-0.529346943,-0.350567698,-0.461651146,-0.0910979882,-0.564195156,-0.301728427,0.0347906835,0.0998506397,-0.0488021076,-0.210526392,0.0200150739,-0.133318081,0.0896070823,0.9609375,1.96473229e-05,-0.402549356,-0.210455224,0.652204216,0.673828125,-0.0981454924,-0.330053747,-0.223647073,-0.122317657,-0.0278836917,0.0516671762,-0.468782812,0.215765864,-0.046114482,-0.0825681388,-0.288104177,-0.105283275,0.859375,-0.0801150575,-0.17241165,-0.0491041765,0.0954384655,-0.163110286,-0.303750962,-0.138626784,-0.322246373,-0.634347081,0.338831902,-0.0355360806,-0.485923201,0.0338825993,-0.453012317,-0.40625,0.0402856953,-0.682291687,-0.127435774,-0.0988987461,0.367999464,0.336880714,-0.112627976,0.374979228,0.262709618,0.421875,0.214388728,0.0919751972,0.0118928775,0.21282123,0.371024817,0.47046876,0.0411391109,0.140668139,0.536969841,-0.270523459,-0.153340459,-0.104235925,0.306732327,-0.282207042,0.0255972482,-0.439214587,0.169448882,-0.329078555,-0.202116653,-0.396597773,0.313476562,0.181069568,-0.321328431,0.0625882521,-0.390755206,-0.125285581,-0.0443893671,0.56233722,-0.0819964558,-0.661057711,0.374943107,-0.168475702,-0.166594207,-0.171918109,-0.5234375,-0.156708211,-0.259733617,-0.139079303,-0.0362378135,0.0290792435,0.0207400024,-0.00603846787,0.199671671,-0.232408792,0.0772114098,0.154295057,0.11452201,0.143568501,0.0494581871,0.365143001,0.0531101562,-0.119670853,-0.0109074758,-0.478515625,0.426844835,0.0079308413,-0.203077972,0.0764223039,-0.181703925,-0.0410158858,0.170328528,0.809895813,0.165931702,-0.0292151663,-0.467478186,-0.217721879,-0.40415594,-0.309406459,-0.0461461693,0.0222201739,0.0740014091,-0.190000728,0.41084829,-0.131848246,-0.497899711,-0.0370713733,0.311565906,0.106215119,-0.378863484,-0.0457378365,0.421672463,-0.161537081,0.0429930277,0.126406953,0.0149428928,0.279278547,0.484102458,0.211350515,0.474511713,-0.362273991,-0.0873611644,0.0273365695,-0.453209907,-0.0724955574,0.054673288,-0.216780514,-0.163085938,0.540482938,0.620117188,0.491344094,0.0125407353,0.0293837078,0.0915406346,-0.450195312,0.153281733,0.263772905,-0.369958818,-0.176809207,-0.192935452,-0.606445312,-0.161106795,0.0429429933,0.0693214908,0.52734375,0.488555908,-1.109375,-0.364824206,0.314331561,0.233535975,0.463751674,-0.764322937,-0.0678814203,0.11303933,-0.136738047,0.263671875,0.160159275,-0.00344227161,0.511264563,-0.115231149,0.107404582,-0.187523171,0.372914791,-0.156189397,-0.140135914,0.0169427283,0.363442093,0.318300903,0.435546875,-0.463598639,-0.0700319484,-0.0550318584,0.417949796,-0.0444777682,0.84765625,0.497859061,0.229440913,0.378815711,-0.0520976521,-0.23137632,-0.353732646,-0.00499718729,0.180169567,0.260731041,0.266601562,-0.0932497382,-0.136191174,0.219274014,-0.519909263,0.938802063,-0.378982663,-0.170332476,0.204029337,-0.146486491,-0.0822992027,0.129901499,0.107911088,-0.256774575,-0.208463535,-0.0167748239,0.102809973,-0.0974346176,0.0538803563,-0.210507661,-0.311521024,-0.0248842761,-0.061837703,0.330037981,-0.705078125,0.349449933,-0.0518650971,-0.206121325,0.615559876,0.236782789,-0.338719785,-0.329004288,-0.576437116,-0.186555699,-0.649450243,0.206924111,0.217812181,-0.641741097,0.183027714,0.51953125,0.9296875,0.0215657558,-0.272488624,-0.0223570764,0.195265934,-0.384684801,0.0294566732,0.652217746,0.160182089,-0.23544006,0.205048442,-0.108920082,0.235858023,-0.0060043768,0.170932442,0.0482220016,0.239717215,-0.135728016,0.487740397,-0.0676326454,-0.0627677441,0.304534197,-0.0649156794,0.359290481,-0.461985528},{-0.44137913,0.3194279,0.43666294,0.86328125,-0.20798615,-1.0390625,-0.36521503,0.61154515,-0.33222246,0.05629322,-0.14259744,-0.72864586,0.18890198,0.11113717,-0.05844558,-0.15367202,0.31343055,0.21045099,-0.23875985,0.17774554,-0.51660156,0.13524961,0.1071685,-0.19670346,0.05627204,-0.32520816,-0.12598196,0.60876465,-0.0402905,-0.8177083,-0.25873193,-0.34188688,-0.1431102,0.04517126,-0.2801779,-0.14156154,0.6972656,-0.26652017,0.40604576,0.6789551,0.01460329,-0.08787118,-0.18356095,-0.00495954,0.18651836,0.03043948,0.07839105,-0.70703125,-0.25483337,0.37132758,0.3953015,-0.18753675,-0.60464245,0.07612148,0.26269183,-0.5984375,0.04805217,-0.41222882,0.7084961,-0.18020815,-0.25296697,0.00477973,-0.7089844,-0.09277712,0.18062918,0.78125,-0.2899955,-0.3126462,-0.5542333,-0.14894597,-0.57849705,-0.02499979,0.09255073,0.62109375,0.2834858,-0.31146142,0.0876403,0.06028297,0.81640625,-0.15771392,-0.21925782,-0.11203969,-0.15722024,0.4022106,-0.43083882,-0.07521087,-0.5155419,0.04851014,-0.44127604,0.07279267,-0.32129708,0.23443577,0.0651565,0.26072693,-0.34553328,-0.4111046,0.55269754,-0.4258948,0.29587546,-0.4435018,0.00697454,-0.07033738,0.4041967,0.18986528,-0.19290227,0.02928587,0.41209337,-0.14760013,0.1699356,0.01435002,-0.41509652,-0.9635417,-0.22750126,-0.13573416,0.7652699,0.01577024,-0.43051383,0.44101563,0.94140625,-0.30571893,0.05408466,-0.18611272,-0.12087699,-0.19339475,-0.19191778,-0.12575077,-0.16743484,0.87646484,-0.66189235,-0.04359554,-0.21046092,0.6107422,0.1996989,-0.09087671,-0.36709923,-0.33687338,-0.5908203,0.15954405,-0.12127963,0.11207726,-0.04301789,-0.07785976,-0.420936,0.12115334,-0.18996185,-0.2386735,-0.34860244,-0.00173269,0.13921191,0.640625,-0.08521646,0.16405483,-0.23150153,-0.0014033,-0.27046502,0.00605801,-0.44517565,0.00993654,-0.66004777,-0.1562458,0.09694832,0.22612013,0.38667017,0.37482136,0.3291767,-0.4296875,0.63206846,0.22596703,-0.05237838,0.14455341,-0.32904977,-0.5571289,-0.32225645,0.13577338,0.07374356,0.24468419,0.00550012,0.31160024,-0.03311409,0.28121662,-0.02528333,-0.18751898,-0.08320148,-0.7172476,-0.671317,-0.10231125,0.26647273,0.05517881,-0.27925056,0.03664654,-0.37504628,-0.33592984,-0.1454957,-0.28523323,0.06420746,0.5135642,0.12883714,0.03638736,-0.4326834,0.20841885,0.15187633,0.15825921,0.02313502,0.62590146,-0.10887,-0.3770752,-0.497382,-0.42399338,-0.21536312,0.02735192,0.21396519,0.04175559,-0.4200767,-0.16450095,-0.00592866,0.04270951,0.25290245,-0.08565526,0.5911458,0.3397576,-0.06006523,0.40641275,0.53515625,0.83203125,0.00592145,-0.08761792,-0.00691417,-0.3095388,-0.13578065,-0.28801343,0.05863675,-0.6616211,0.40527344,0.02992789,0.2509887,0.8535156,-0.49290708,-0.04297649,0.43568158,0.01267357,0.16989228,-0.25281882,-0.41286787,-0.1189526,0.05419602,-0.53914064,-0.41619053,0.54296875,-0.74609375,0.14800186,0.02039602,0.33708245,0.00296101,0.26466486,0.28422454,0.14357267,0.06764525,0.39141846,-0.35145625,-0.29787925,-0.05995943,-0.31815815,0.12276607,-0.17135598,0.26850373,0.46730578,0.06955919,0.28527832,-0.4913867,-0.7469952,0.07421124,0.29592025,-0.583917,0.2919922,0.06064929,0.22467864,0.28496844,0.17133202,-0.39962375,0.20409997,0.12787433,-0.5382179,0.12893955,-0.40700358,-0.97265625,0.017846,-0.08054645,0.05467187,0.40609056,0.48255122,0.1983323,0.14597158,-0.12983933,0.08347017,-0.5868804,-0.05103347,-0.05282366,-0.24455786,-0.05075991,0.12303172},{0.000355675584,0.299880385,0.142544255,0.029301988,-0.0890965685,0.14555122,0.534642279,0.132316872,-0.15080066,-0.100417741,0.280336589,-0.0496770069,0.0490501784,-0.233867496,-0.294029504,0.082740061,-0.360292375,0.234322473,-0.482450604,0.0673919693,-0.666503906,-0.423828125,0.0939657688,-0.143486559,0.0744576082,-0.0161525682,-0.00585810933,-0.59650737,0.0868515074,0.0450914837,-0.0131822359,0.0820486918,-0.254843444,0.0298033115,-0.0628935844,-0.0178381484,-0.330078125,0.348640561,0.469795108,-0.157220379,-0.342602283,-0.120395474,-0.8828125,0.229936957,0.179132044,0.0143607426,0.626233578,-0.0422560498,-0.280257434,0.160182193,-0.437442213,0.375928521,0.172936976,0.123026334,0.153286383,-0.00242418982,-0.557914376,0.0834823847,0.333963364,-0.186490878,-0.339681,-0.185985476,0.116933122,-0.061272528,0.594366789,-0.483103186,-0.043945536,-0.0864150301,0.497322321,0.321148485,-0.278301656,0.427585185,-0.347607434,0.0729864463,-0.0773742795,-0.521321595,-0.551036,-0.948660731,-0.135740295,-0.136708602,-0.172434732,0.487449378,-0.28024599,-0.0835162327,-0.361291498,-0.102451123,-0.198280543,0.21974653,0.252901196,-7.78439498e-05,0.606770813,-0.476666868,-0.206591457,-0.235847652,0.240155026,0.174739033,0.225123361,0.0610859916,-0.264642805,0.166994452,0.203610763,-0.218759388,-0.285208106,-0.223094165,0.846235812,-0.546519876,0.233892962,0.128901675,-0.76171875,-0.309597701,-5.67197385e-05,0.0595448874,0.2734375,0.387715667,-0.536132812,-0.155774623,0.170407236,-0.085709542,-0.0926999971,0.295951217,-0.0890757069,-0.0905680805,0.184966311,-0.488437504,0.689002395,-0.543207884,-0.277248412,0.491911501,0.00613497477,0.562144876,-0.231914267,0.0618305728,-0.505781233,0.149902344,0.20804432,0.155223161,0.0250440016,-0.250596136,-0.0232590344,0.00720069371,0.280181468,-0.200207904,0.29703021,0.546810985,-0.102299757,0.191878334,-0.113792047,-0.114977263,-0.109606124,-0.629365802,0.472561747,0.0918181017,0.469129771,-0.135307342,0.230494455,-0.0431741849,0.245558888,0.287150353,0.15234375,0.043908976,0.0284811091,0.0793444216,-0.619873047,0.429907382,-0.355373472,-0.0202468764,-0.431606352,-0.0847540274,-0.37098819,-0.332742751,-1.0078125,-0.288129836,0.633544922,0.274307609,0.202132791,-0.107178867,0.214813307,0.0764627382,0.0158883128,-0.39640668,0.265594006,-0.0651775897,0.307565778,0.258908421,0.125763729,-0.113305882,-0.0224067979,-0.0581062436,0.559210539,0.171829954,-0.0539775975,0.341887027,0.179591,0.560379446,0.195780367,0.340924829,0.0712743402,0.26181227,0.440680087,-0.0401573554,0.284185827,0.164064243,-0.2762793,-0.469827592,-0.445529521,-0.517187476,0.0444448888,-0.177697733,-0.517469645,-0.0470723584,0.248851106,-0.172862515,0.686523438,0.0153021365,-0.0857208669,0.173849583,0.173882127,0.3496916,-0.351511329,0.0239238478,0.109129921,0.719726562,-0.0151081244,0.0365995318,-0.00876788609,-0.20602496,-0.568287015,0.398566276,0.463855684,1.0078125,0.0963872373,-0.249315783,0.449153632,-0.293938577,0.0680856183,0.213443279,0.299740076,0.444522947,-0.400024414,-0.689062476,0.0390706472,0.399496436,0.0905422419,0.0164233465,0.162073746,0.230388567,-0.0515273623,0.269546717,-0.175795659,0.225939795,-0.504161,-0.521701396,0.42676419,0.186988294,0.13479726,0.513888896,-0.00577425631,-0.288135946,-0.0622301474,-0.745192289,0.264669597,0.160161614,0.0523510687,0.333938748,-0.413145125,0.303646207,-0.319282949,0.0260030739,-0.325141907,-0.0523750223,-0.239820421,0.0407724418,0.0466707572,0.0503862724,0.204062372,0.0460106246,-0.0135527523,-0.693750024,0.752604187,0.678013384,-0.0727454275,0.759765625,0.0998389721,-0.280247957,0.139132351,-0.0740094855,-0.264703602,-0.153280452,0.156693593,-0.352734387,0.0383067541,0.0505266227,-0.435635656,0.0144309336,-0.481201172,0.064229697,-0.500259101,-0.0567406677,0.152356252,-0.115158267},{0.841796875,0.309639364,-0.177248895,-0.162206709,-0.278351307,0.386779785,0.0325876139,0.0591986291,-0.00589836761,-0.0863913819,0.435062051,-0.401453346,0.177342325,0.313341081,0.00427924935,-0.0764275715,-0.208883464,-0.4052535,-0.0378668755,0.00254804362,-0.332004309,-0.123707563,0.278325766,-0.0591789447,-0.147960916,-0.251953125,0.471212626,-0.111547239,0.0808187276,0.113049477,0.171301171,0.169362709,-0.349443853,-0.279305845,-0.505741715,-0.498538405,0.0727783218,0.0952393636,0.286047906,0.119580291,0.108108483,0.419717252,0.947916687,-0.290068954,0.6796875,0.123149402,0.252929688,-0.0712877065,-0.264712185,-0.0594155192,0.0820034072,0.111832947,0.603966355,-0.122058302,-0.0737194642,0.374876738,-0.288003176,-0.0673819706,-0.195347652,-0.0200161003,-0.037443582,0.349444509,0.109368376,-0.199263141,-0.239094585,0.291873425,-0.517723858,-0.145017773,-0.00836742483,0.103024311,-0.17000936,-0.353341788,-0.0555315018,0.1065097,-0.352501392,0.239345193,-0.0242294073,-0.216331378,0.452675998,-0.403203696,-0.0798193887,-0.357421875,-0.403303176,-0.519618034,0.268540233,-0.364935994,-0.109375,0.0739571527,-0.0841858461,0.416067719,-0.594016314,0.190059885,-0.331054688,0.332918346,-0.0739717111,0.0596523099,-0.0858948454,0.798828125,-0.0201453511,-0.132309735,-0.300726354,-0.142024353,0.349422187,0.720312476,-0.0419523045,-0.505885422,0.489942521,0.654381812,-0.237316847,0.0474591628,0.356517941,-0.441620469,0.400381148,0.0827559754,-0.397731036,0.377054155,-0.139653221,-0.0183097478,0.255859375,0.00270022964,-0.22743389,-0.452483267,-0.0651999936,-0.154781803,-0.254822254,-0.215851456,-0.175279766,-0.160210818,-0.0732450038,-0.62109375,-0.0741929263,-0.200763568,0.228543609,-0.735937476,-0.458288431,0.229019657,0.0194695666,-0.359458715,-0.109892331,0.155274838,-0.325350314,-0.636988163,0.229967117,0.0289267041,-0.0189337749,-0.110366903,-0.338961422,0.92578125,-0.67015624,0.516983688,-0.0198543053,-0.0895671695,-0.730156243,0.119881034,-0.22701183,0.0849968642,0.139617041,0.518713653,0.232932016,-0.845703125,-0.899088562,0.301729918,0.307694286,0.124816686,-0.0085536465,-0.0722738802,-0.454679519,0.236161977,-0.214430109,-0.180586383,-0.137688592,-0.631076396,-0.392292678,-0.133768827,0.2109375,-0.133783847,0.345769346,-0.131810457,-0.311511576,-0.0676622093,-0.382797807,0.17865175,-0.370943516,0.0981838554,0.314339787,-0.0314175189,0.565789461,-0.0633603185,0.26856333,0.178710938,0.0414693244,-0.783203125,-0.031191878,0.213408664,0.516406238,0.299905121,0.250535756,-0.0195601024,0.404771209,0.166989267,0.705357134,0.229856774,0.00891306624,0.576104522,0.0522630773,-0.87109375,-0.10279008,-0.12743552,-0.447299302,-0.35167852,0.181045741,-0.15237698,-0.40828082,-0.0184869394,0.329985112,-0.0803260878,0.243652344,0.436755151,-0.3016271,0.217543036,0.306616813,-0.199121088,0.307669073,-0.62109375,0.307569861,0.0462519117,-0.247063339,-0.111618713,0.235852435,-0.542410731,-0.18894732,0.0170743857,-0.149408266,-0.0431370325,-0.000513173582,-0.475410163,0.266678959,-0.436444253,-0.265348315,0.0261414815,-0.0698454455,-0.331038535,-0.275409907,-0.632743955,0.156182364,-0.126960382,-0.0571230613,0.282258064,0.0454547405,-0.0277818162,0.118863977,0.183655053,-0.15669933,-0.136233255,-0.167591885,0.23000735,0.663330078,-0.0808200985,-0.572265625,0.0544641092,-0.397443503,0.0105406092,-0.5625,-0.435417891,0.347755015,-0.249989495,0.0132677127,-0.0366314687,-0.0454003476,0.411039174,0.0522679463,0.377907187,0.367277652,0.301751167,-0.253964037,0.822265625,-0.497620136,-0.187013775,0.186126038,0.42862317,-0.372958094,0.216771424,-0.0188113861,-0.335829526,0.488549799,0.0727565438,0.274430335,0.755468726,0.465004295,-0.017902201,-0.177793428,0.617417276,-0.283086836,-0.162529588,-0.0866492614,0.341818571,-0.312476933,0.516818583,0.0788519233,0.352491736},{0.16996902,0.0979007,0.03698093,0.41596308,-0.306629,0.26470545,-0.302646,-0.28027087,0.20207915,0.368222,0.07465432,0.49860492,-0.6067708,0.1206387,-0.62563,-0.38416708,0.11210837,0.15727198,-0.12695597,0.05295041,0.15522163,0.4316579,0.37882206,0.10208905,0.5060992,-0.43559632,-0.06376313,-0.28799143,-0.0259142,-0.16504067,-0.6186655,-0.2921174,-0.5473958,0.26454112,-0.10129967,-0.05541336,0.11553463,0.07275113,0.20009263,0.1586414,-0.13274944,0.18906744,-0.3067104,0.26467696,0.12398904,0.19862433,0.5346423,-0.01819763,-0.2295064,0.01008652,0.03810951,-0.32231787,-0.42977995,0.06983334,-0.16512826,-0.22994906,0.16255136,-0.05930557,0.01657063,0.12465481,0.12155775,0.27634388,0.8261719,-0.58521205,-0.16110724,0.06276476,0.24832365,0.1918736,-0.434468,0.09251404,-0.05556866,-0.13675308,0.5373492,-0.3964102,-0.61328125,0.1786756,0.04516576,-0.36036095,-0.18888697,0.2822148,-0.74609375,0.27441406,0.27244857,0.19221519,-0.00102094,0.30172324,0.22854125,-0.24168387,0.16013055,0.07762303,-0.15040028,-0.10474204,-0.505685,0.44818115,-0.16113906,0.16157445,-0.24169719,-0.35729736,0.10423888,0.22698882,0.03331709,-0.20259193,0.2187258,0.1469232,0.39655414,-0.3709517,-0.13628593,0.1690005,0.7042739,-0.12487971,0.81152344,-0.02164596,0.09939361,-0.19188613,0.32421875,0.10985447,0.04836845,0.56816405,0.3095215,-0.7178819,0.09689412,0.27741194,0.75859374,-0.10327814,0.36309317,0.34204102,0.0910053,-0.00587083,0.3115275,-0.20207274,-0.10251705,0.05680997,-0.7388822,0.46657366,-0.0252313,0.4792002,-0.09400846,0.2626953,-0.29679048,-0.32687432,-0.44887152,0.18263566,-0.581918,0.37792295,0.2900597,0.147426,0.35723004,0.32911542,0.6514423,-0.08059236,0.60734373,0.19918299,-0.5408433,0.672092,-0.04664201,-0.4033203,-0.7855469,-0.7316707,-0.02500407,-0.4199673,-0.4592702,0.48409992,0.1967834,0.22008967,-0.43476564,0.74609375,0.03673234,-0.6339614,0.01924055,0.7347301,-0.04294796,-0.21626033,-0.06715433,-0.15870056,-0.32127994,0.03166948,-0.23920402,0.26377466,-0.23388118,-0.15230808,-0.14794107,0.04180478,-0.3340591,-0.21836723,-0.04800104,-0.40306592,-0.11349335,-0.39651376,-0.18409082,0.27734375,-0.16406427,0.09547449,0.24725848,0.1127949,-0.4758976,0.24166243,-0.36703083,-0.8339844,-0.44973958,-0.21831164,-0.3593516,0.13377307,0.45037058,-0.19245742,0.08375558,-0.41020963,-0.02092332,-0.45611572,-0.03530161,-0.05419051,-0.4472095,-0.7625,0.4618963,-0.66510415,0.5306713,0.13618326,-0.45635113,-0.11061373,-0.46730918,-0.695638,0.31823814,-0.5522017,-0.062353,-0.05245346,-0.13818063,-0.4059273,0.01478015,0.18452288,-0.24849434,0.40234375,-0.2406894,-0.26860893,-0.26656598,-0.4210574,-0.083972,-0.1445491,0.17339772,0.05233758,-0.13819522,-0.31639296,0.26469803,-0.4178723,0.4966518,-0.19432971,0.0339312,0.36114606,0.16646191,-0.09307408,-0.37501964,0.11665501,0.00756601,-0.01428634,0.19335759,0.16847536,0.14603755,0.1782667,-0.03731177,-0.12488663,-0.479516,0.04415856,0.20463423,0.24880593,0.84375,-0.24122721,-0.44702423,0.24172084,-0.43638393,0.01907047,-0.01237272,0.2832239,0.5436581,0.5725911,0.11963504,-0.35048628,-0.15675536,-0.15866154,0.81640625,-0.22506365,0.19771284,-0.60117185,0.4921875,-0.20061707,0.11693883,-0.32332137,0.02647429,0.23734345,0.23878819,-0.23098385,-0.02370908,0.51775,0.20659116,-0.21826172,-0.17865747,-0.13276528,-0.65581596,0.20153841,-0.03791752,0.1548019,-0.21970789,0.03391338},{0.0842281953,0.89453125,0.0313860774,0.48731032,0.481201172,-0.449204981,0.365181297,0.0956601501,0.469566464,-0.159259275,0.136763677,-0.455066621,0.616699219,-0.199149728,-0.148455277,0.100574911,0.78125,0.0932801962,0.161671907,-0.632273734,0.0026985798,0.0247877985,-0.00225049863,0.441945046,0.180600494,0.000655704062,0.275408536,0.5078125,-0.0959542692,-0.0269065853,0.0503467172,-0.530992985,0.0781533942,0.0506657399,-0.424791843,-0.383025289,0.252845705,0.223673642,0.00285900803,-0.0438996144,0.325149536,0.275423497,0.6244753,-0.485094577,0.628305316,-0.143528655,-0.113770574,0.0927115455,-0.676171899,-0.0135355601,-0.296875,-0.374866843,0.180684894,-0.0560449995,0.553998172,-0.13722603,0.168985173,0.108565003,0.00311243138,-0.151854426,-0.464983255,-0.0163872428,-0.25390625,-0.0371294059,-0.12507464,-0.0680820346,0.0373692364,0.0866709203,0.0543994531,0.660937488,-0.208948866,-0.00572930323,0.214824215,0.0417351387,-0.0519182123,-0.216724575,-0.0402991176,-0.194340155,-0.405340314,-0.786892354,0.341656357,0.131874368,-0.36014387,0.0358646773,0.238785014,0.265632629,-0.43833366,-0.0134125231,0.0825381428,-0.528988481,0.107185319,-0.462952137,-0.362334788,0.268472403,0.21244885,0.0788343027,-0.28892687,0.335057944,0.127867013,-0.00683101313,0.472999662,-0.110605769,0.172846004,-0.00344914151,0.0876414999,0.398392081,-0.0827057958,0.338918954,0.120097518,-0.212917984,0.148865864,-0.0433186442,0.104470246,0.204187587,0.30754742,0.0360044688,-0.258842051,-0.336881965,-0.0792871341,-0.0634737685,-0.60546875,-0.763020813,-0.216799155,-0.147501558,0.111556821,-0.239705533,-0.356569886,-0.134702533,0.0910826549,0.0238728132,-0.28907305,0.305615842,-0.102586396,-0.324131101,-0.472443521,0.505565047,-0.0135976551,0.475148171,-0.347701311,-0.237775788,0.15914537,0.795572937,-0.139646932,0.313397586,0.597928762,0.249299258,-0.0408994816,0.13377583,-0.161120445,-0.176236048,0.422817886,-0.18946518,0.172819182,-0.166004479,0.742513001,0.257644296,0.534564376,0.369140625,0.0337215737,-0.408103824,-0.0167798828,-0.18599616,-0.390536219,0.413261831,0.268618494,0.142017409,0.142571956,-0.370984703,0.0813098848,0.297868103,0.0195836313,-0.0474339053,0.32828775,0.149394497,0.0323564969,-0.122815885,0.258747935,0.0681533441,-0.301690936,-0.319394439,0.0517704748,0.0310484767,0.599739611,-0.280273438,0.146965444,-0.124674223,-0.54357636,-0.374868453,0.67463237,0.464763314,-0.71079284,0.134741664,-0.620903194,0.254920483,-0.316311747,0.0978876352,-0.430808157,0.0134237679,-0.28409797,0.250597596,-0.0865928829,-0.0726804957,0.165016815,-0.13765724,-0.149414062,-0.142570406,-0.201191649,-0.218744606,0.345496893,0.108112983,-0.201187015,-0.842968762,-0.237784967,0.345718026,-0.799479187,0.276499391,0.563981652,0.333936751,-0.270475477,-0.355376303,0.00216904981,0.570221663,-0.127010345,0.180082127,0.226598144,-0.0118866256,-0.645926356,-0.225045249,0.113262333,-0.254935056,0.731445312,-0.050055854,0.233329192,0.60201323,-0.218786851,0.0567687601,0.238794073,-0.627816141,0.192840651,-0.0834782049,-0.39920342,0.379123271,-0.224128991,0.0761454329,-0.072243683,0.047275234,0.277369678,-0.206426561,0.121113025,-0.0438071527,-0.00460937014,-0.320127964,0.121835507,0.0990669727,-0.131382599,-0.572428405,-0.127425984,-0.151411578,0.181205571,-0.373105705,-0.212863833,-0.423736215,0.174804688,0.152308196,0.476026356,0.548906267,0.344765097,-0.430624485,0.712890625,0.360359639,-0.297863632,-0.0971519276,0.0189748649,0.488044083,0.733685672,0.449765623,-0.800347209,-0.534974575,0.0962676182,-0.364806294,-0.405531764,-0.347700387,-0.0573794656,-0.140594646,0.458124995,-0.58380127,0.006133541,0.0698192716,-0.331941307,-0.125308201,0.443920612,0.0449355841,-0.25489375,-0.420814037,0.383703858,0.374186188,-0.380814731,-0.885416687,-0.197645858,0.128432065},{-0.671549499,0.227938458,-0.185084075,-0.0908211768,-0.00424626889,0.602812529,0.156242579,-0.00146848685,0.179140911,0.229922295,0.198661104,-0.18356891,-0.137693882,0.185103238,-0.803906262,-0.0692615807,-0.0372233614,0.045311071,-0.164033294,-0.217372343,-0.618303597,-0.0278210491,-0.221676886,-0.771093726,0.455978096,-0.49839744,-0.016404381,0.439453125,0.00472905301,0.0516511649,-0.0801024139,0.218716323,0.208511189,-0.421070784,-0.017770214,-0.5625,0.0776630193,0.389626235,0.0344488323,0.209402159,-0.192308217,0.0486075915,0.209042504,0.0454299524,-0.511403084,-0.0551701374,0.378607869,-0.0305470601,-0.434545696,0.0400613062,-0.612686813,0.166997552,0.207959756,0.129891381,0.677911937,-0.384539753,0.116260841,-0.560546875,0.505240083,-0.407189697,-0.0985453576,-0.279176176,-0.033194866,-0.176799476,-0.522736371,-0.167988077,0.724609375,0.720572889,0.462861478,0.0488653332,0.155236155,0.337890625,0.112731032,0.231370658,-0.556826651,0.257668227,0.0778379589,-0.125055805,0.376860738,-0.0942593217,-0.138151601,-0.724158645,-0.226543054,0.0265822019,-0.221236512,0.514282227,-0.0249124635,-0.321818709,0.0192583743,-0.100782879,0.29706189,0.124620527,0.058467187,0.0735220239,0.450172603,-0.106656671,-0.0102395732,-0.133765489,0.0391442925,-0.138170615,-0.363190114,0.102981195,0.554398119,0.0440310128,-0.147466794,-0.0676352158,0.470621049,0.674958885,0.335003406,-0.339681715,-0.59765625,0.191864803,0.0380414426,-0.121074654,0.161111608,-0.380729169,0.00122319546,0.512063444,0.110787101,0.217779547,-0.475771964,0.0788310841,0.0602831095,-0.0725061595,-0.101385415,0.183163881,-0.334853142,0.089337334,-0.468552202,0.137705371,-0.218211427,-0.788085938,0.154798195,0.440214515,-0.058946684,-0.080078125,-0.543285489,0.184561595,-0.468394876,-0.0305883549,0.287109375,-0.842773438,0.0932813734,-0.286197066,-0.254905939,-0.174903423,-0.18162024,0.350534111,0.0134982215,0.107990056,0.589158416,-0.183592245,-0.505512834,0.468735427,-0.00108416239,-0.273398072,-0.352650553,0.240226567,-0.0156969056,0.173444778,-0.619199812,0.0517190993,0.642795146,0.0549513549,-0.524939895,-0.183626473,0.301728815,-0.921875,-0.119374171,0.592945755,-0.185537159,-0.376120925,-0.477826297,-0.116017982,-0.299773633,-0.0191868115,-0.603794634,0.147298172,0.34753418,0.22085619,-0.325217664,0.150936946,-0.612680316,-0.0871836841,0.873046875,0.209469616,-0.0479674153,0.234923586,-0.308650374,0.344606638,0.805989563,-0.864583313,-0.533325195,-0.0163302552,-0.0281948261,0.362364143,-0.0492969789,-0.369021922,-0.274309546,0.241611391,0.276262105,0.0455273315,0.223665848,-0.22413376,-0.0656539276,-0.166947111,0.202540725,-0.375074059,-0.361256093,-0.0316571593,-0.706292212,-0.347676396,-0.0438062996,0.00299270637,0.269555062,-0.0866782665,0.225575924,0.37476325,-0.129864365,0.263671875,-0.0890582576,-0.223621547,0.106940471,0.0961783826,0.121822082,-0.0462869555,0.350612909,0.268614143,0.0552914962,0.123060651,-0.635091126,-0.0903017074,-0.195290312,0.4665218,0.0995263308,0.0695581734,0.274474889,-0.0367213376,0.211933553,0.270545214,-0.261474609,-0.368364394,0.152336285,0.230940074,-0.233872667,-0.249738425,-0.0043361499,-0.049529016,-0.10546875,-0.384830743,0.134762377,0.519604981,0.0986223668,-1.0859375,0.225096554,-0.0497964397,-0.165990412,0.302651852,-0.214846745,0.281225681,-0.321222842,-0.117683083,-0.256716102,0.236253768,0.607421875,0.276383489,-0.200631455,-0.720145106,0.314647138,0.294828862,0.409699142,-0.050767187,0.530357122,0.197735637,-0.321697861,-0.588245749,-0.454898953,-0.400390625,-0.105198778,0.08639355,0.600585938,0.322224736,-0.513599515,0.343561918,0.0800945982,-0.111126266,-0.25684762,0.301724881,-0.484477788,0.19241561,0.215769053,-0.0237876829,-0.488192469,0.022480011,0.539576471,-0.394427538,-0.209386483,0.0174361281,0.0617861301,0.105764247},{-0.1879788,0.14653586,-0.32709625,-0.1279365,-0.35057774,0.40974787,-0.48421225,-0.32318327,-0.06008315,0.34467128,0.06242488,0.23392875,-0.5176669,-0.7734375,0.26749617,0.4489663,-0.4538269,0.32517213,-0.09740445,-0.11448322,0.51765424,-0.17045571,-0.01560628,0.23043224,0.02565467,0.07960514,-0.22169793,-0.00846322,-0.0671156,0.33794487,0.19237746,0.05601276,0.02379013,-0.32607484,-0.8076172,-0.3682177,0.43076065,0.00958437,0.1052255,0.11252464,0.05347309,0.18014005,-0.36321148,-0.12026062,-0.45811632,0.0746839,-0.1396016,0.20262112,0.78841144,-0.06766164,0.18223262,-0.24372254,-0.38656217,-0.4889889,0.58493304,0.67365056,-0.04310538,-0.25482935,-0.27642402,-0.29983982,-0.38626233,0.09055008,-0.13283321,0.24407643,0.03488487,-0.55629593,0.28523502,0.09864309,-0.22417398,0.7770433,0.03555755,-0.09984189,-0.08568224,0.43346524,-0.08861377,-0.2608287,-0.33977717,-0.09398524,0.35721982,0.17092796,-0.53945315,-0.65453124,-0.13963977,-0.37386876,0.11061573,-0.6457332,-0.04333805,0.13233052,0.49852324,-0.16408457,0.17040117,0.0967029,0.02213312,0.7285156,0.02196162,0.63378906,0.6573276,-0.7757813,-0.04215001,0.5029839,0.5397461,-0.03968254,0.47552204,-0.55439454,-0.07810703,0.07399657,0.14648438,0.3233163,0.05954856,-0.41011316,-0.11621421,0.41304687,-0.37700453,0.26757812,0.29791626,-0.430652,0.47067398,-0.7630208,0.05556763,0.25484154,0.49696928,-0.01115678,-0.18550543,0.24021788,0.00977654,-0.11936674,-0.08496094,0.7100497,0.2270401,-0.4759375,0.10491513,-0.02318259,-0.2300698,-0.37868088,-0.4286629,-0.24162807,-0.7631836,-0.21924332,0.15921809,0.52734375,0.02512508,-0.21978143,0.21874648,0.24603271,0.0029596,0.07788317,0.50459796,0.8394886,-0.23679738,-0.5332961,0.20707195,-0.55658585,0.5234375,-0.16888219,0.34166667,0.30454493,-0.06740841,-0.19916992,0.5078125,-0.43360752,0.6923828,-0.19525766,-0.4475867,-0.42292187,0.13773271,-0.06194873,0.39074966,0.67791194,-0.2236293,0.19531043,-0.06787344,-0.03588299,0.00698236,-0.36502054,0.4881757,-0.09593868,-0.12832074,0.17928249,0.54,0.05807433,0.00495275,-0.2548561,0.02800828,-0.18897048,-0.06954538,0.0991507,-0.45500228,-0.280266,0.22704822,-0.49898437,-0.03661795,-0.18451068,-0.08128009,-0.24887572,0.1562448,0.15913205,-0.18017119,0.23918636,0.45997807,-0.05384054,-0.46716774,0.19478796,-0.08425648,0.22749051,0.48264194,0.13180736,0.1037567,0.05760128,0.01294952,0.26769266,-0.49106157,-0.10717724,-0.6421638,-0.5537623,-0.10794337,-0.57421875,0.6028054,-0.07150128,0.11861465,-0.37501478,0.4736328,-0.12623233,0.2488934,-0.47925645,-0.33774504,0.2744962,0.05420747,-0.21632284,-0.6352539,0.30760357,0.25868338,0.62992525,-0.2217262,-0.38755366,-0.46252576,0.4904204,-0.20017554,-0.24121094,-0.01499436,-0.23824774,-0.33676863,0.15471117,0.00814227,0.0703109,-0.40436748,0.56332237,0.17725188,0.19335644,0.17137292,-0.68146306,-0.1328298,-0.03270248,0.03509257,-0.08174983,0.7042411,0.16897179,-0.67864585,-0.229454,-0.7229567,0.5071791,0.39648438,-0.02932203,0.21436703,-0.0359148,-0.64171004,-0.2771767,0.2889909,0.14741932,-0.5139044,0.532848,-0.08788226,-0.3494777,-0.02016586,-0.36510837,0.33692098,0.61927086,0.2137523,-0.13479337,0.26277843,0.3076317,-0.05174513,-0.24922791,0.09399105,-0.03066727,0.17094852,0.41529447,0.45810387,0.42199063,0.7285156,0.6684827,-0.12174606,-0.05215203,-0.04628628,0.57634944,-0.02029545,0.04554508,0.28411347,0.0020185,-0.10688907,0.36627394},{0.22012882,0.38464627,0.02602789,-0.05925099,-0.05466409,0.00246406,-0.18117334,-0.29589185,0.48509642,0.18168235,-0.42529297,-0.51171875,0.0105516,0.12691651,-0.2705748,-0.03489436,-0.47444433,0.18159544,0.01600286,-0.7068452,0.56039065,-0.25486234,0.3407108,0.41904297,0.25485796,-0.18212949,-0.30169696,0.28810242,-0.3965175,0.0913418,-0.9420573,-0.10033659,-0.26853567,0.27243796,-0.15037797,-0.06470197,0.45500243,-0.07544129,-0.12078642,0.38481477,0.34277722,0.19686663,0.84521484,-0.10062295,-0.797433,0.63134766,-0.45486507,-0.08716422,0.16263536,0.06736617,-0.17583014,0.53515625,0.0110755,0.20713009,0.11524955,-0.6312934,0.24369639,-0.24118304,-0.43745846,-0.77197266,-0.3981585,-0.03327381,0.15779313,0.62597656,-0.00423175,-0.01828557,0.14358576,-0.08131263,0.06960513,-0.00857291,-0.4922612,0.1523489,0.23487625,0.00701129,-0.25390625,-0.35656157,-0.09687531,-0.3076172,0.6586914,0.1440494,0.28216553,0.15821746,0.16652726,0.5655981,0.49789664,-0.5537684,0.11843833,0.10763328,-0.19293839,0.2616527,0.19097467,-0.01391742,-0.28899574,-0.33483478,0.22072186,0.01538932,-0.05295586,0.20811044,-0.12525219,-0.18354881,-0.2479552,0.5655839,0.09522195,-0.29386958,-0.2461467,0.28904408,0.56987846,0.3945152,-0.3797354,0.28032544,-0.23636124,0.1381907,0.01563092,-0.06667105,0.25976562,-0.14449202,-0.05541211,-0.23878561,-0.12186905,-0.21326242,-0.02809536,0.14593865,0.29288146,0.33415112,0.6014254,-0.11276855,-0.07253714,-0.42364854,-0.09345383,-0.03789862,-0.11842562,-0.4305725,-0.27062574,-0.34936136,-0.04588728,0.10962968,-0.34954354,0.33979523,0.23187843,1.1357422,-0.5172631,-0.50390625,0.37640807,-0.27443656,0.3651589,-0.12647006,0.2999132,0.42302912,0.15086342,0.12616707,0.37596977,0.11579512,0.00712849,0.07273603,-0.63030136,0.50204396,0.29283327,-0.22997141,-0.47463262,-0.09298564,-0.47967303,0.9199219,-0.3224107,0.21241136,-0.72526044,0.0869179,-0.03333267,0.7328125,0.32891884,0.29006946,0.09062372,-0.19488181,-0.40649182,0.23291503,0.06686814,-0.9121094,-0.41164678,-0.91328126,0.08489728,-0.19429652,0.22699133,0.07834017,0.55533856,-0.6074892,0.08669503,-0.38867188,0.06520509,0.4651617,0.60690105,-0.18549456,0.14006571,0.21962261,-0.02625453,0.2626539,-0.3435504,-0.00527843,-0.3963041,-0.19572552,-0.14454924,-0.07715263,-0.08029936,0.01597166,0.19090113,-0.51557076,0.06359406,0.21938784,-0.5451389,-0.6494715,0.38745734,0.579472,-0.08712923,-0.43250412,0.5122656,0.38500038,-0.3056269,0.14744742,-0.2802317,0.29001755,0.27241847,-0.65842015,-0.4814587,-0.03418734,0.22268677,0.11670163,0.27632895,0.38382974,0.04871522,-0.43319938,-0.328125,0.03091604,0.02073977,0.08618127,-0.18846637,-0.06833493,0.29597926,0.04269631,0.02064228,-0.02599587,0.02836311,-0.09543453,0.4696107,0.29305983,-0.20459123,-0.06690473,0.33699545,-0.40355414,-0.18452159,-0.76171875,-0.07005412,-0.6012835,0.24324423,-0.30860087,0.12740825,0.827567,-0.07075696,-0.30370378,-0.26861593,-0.1630938,-0.6605114,-0.3075898,0.4248811,0.11520863,0.03239407,0.36317688,-0.05468198,-0.12844884,-0.2763699,0.29877847,0.45898438,-0.16891792,0.06361147,0.35841498,0.31528,1.0703125,0.28026298,-0.10721583,0.297001,-0.20999317,0.08006074,-0.17380163,0.09766019,0.8515625,0.44933197,0.07351045,-0.05114882,-0.18653008,-0.09617134,-0.11966493,0.06986543,-0.29678848,-0.13470648,0.3358347,-0.31345183,-0.49200323,0.2704427,0.27051646,0.02448908,-0.03403732,-0.3181783,-0.1903468},{-0.0607888289,0.396326005,0.697916687,0.0707913563,-0.152348042,0.738932312,-0.0605413876,0.569335938,0.396436274,0.37878418,0.0085894959,-0.225542232,-0.400214672,0.727384865,0.015372484,0.14551878,-0.0920299888,-0.0120403655,0.256801933,-0.505770624,0.408248544,-0.157750979,0.186028242,-0.446590483,0.101029694,0.694531262,-0.201618195,0.782552063,0.347559661,0.796875,0.228049532,-0.117450543,0.523118615,0.0717612356,-0.0400658101,0.191363916,0.0627547428,-0.0253967345,0.0797947794,-0.026435826,0.189449519,0.463850647,-0.124145247,0.342619985,-0.404282182,-0.220683411,0.456823468,-0.496553302,-0.382835627,0.0569772348,0.359375,0.360305935,0.360256016,0.230511874,0.301731408,0.191399232,-0.189504519,0.346056104,-0.217845023,-0.419909507,-0.142054766,0.243582875,-0.0546012074,-0.480347753,-0.274433792,0.076150611,-0.299729139,-0.133814648,-0.422024101,-0.0310793594,-0.290006787,-0.151836589,0.311550707,0.0971697122,0.263174713,-0.61328125,-0.125948027,-0.443268836,-0.180047005,0.0308934674,0.514816821,-0.0991711766,-0.607910156,0.158578366,-0.493151367,-0.499218762,0.19187203,0.156242728,-0.0905384198,-0.237797618,0.0266542993,0.644042969,-0.000224330637,-0.196370035,0.156229705,-0.0861447677,0.0594355054,0.0279818382,0.0329481177,0.0198496338,0.249182656,-0.126945168,-0.0429705717,-0.184175,0.0465746634,0.8203125,-0.0515031442,-0.492037266,0.325236678,-0.0769018978,0.23681137,-0.153313965,-0.10785149,-0.0539194643,0.36623475,0.612862706,-0.627103388,-0.10720177,0.70291388,0.328227371,-0.00700212829,0.540722668,0.210934103,-0.557942688,-0.121384606,-0.94140625,-0.561298072,0.161114201,0.663174689,-0.304727346,0.29880777,0.533558249,-0.0531039573,0.272430032,0.184611186,0.0918498337,0.00891069509,-0.125755221,0.290992439,-0.0944782048,0.665798604,-0.225996271,0.161569491,-0.0993598774,-0.484342456,-0.666406274,-0.273511767,0.616699219,-0.466741592,0.137220412,-0.0537757501,0.189412564,0.137190461,0.611228824,-0.0264406148,-0.219656944,-0.630859375,0.258925498,-0.190914676,0.206105769,-0.149494678,0.5234375,-0.0851980597,0.0754414201,0.51953125,0.0942135677,0.156242982,-0.137691483,0.414555699,-0.684151769,-0.222612128,0.0352697559,0.0977179781,-0.00456979079,0.166451171,0.221162081,0.251953125,0.100306384,0.171400502,0.00713780429,-0.165053621,-0.211945564,0.0815627277,0.0349895917,0.00827554706,0.357324898,0.14064604,0.293012798,0.76953125,0.201234609,0.511393249,-0.270528436,0.389657915,0.0370904356,0.418185771,0.62890625,0.0520820804,0.440603584,-0.204548463,-0.483710527,-0.248396307,0.4140625,-0.433690608,0.134778708,0.130861282,-0.153332487,-0.325216621,0.0886103883,-0.120837957,-0.8671875,-0.640625,0.231957361,-0.0024166333,0.245972455,-0.0565188192,-0.457403272,0.104976021,-0.157644868,0.189942807,0.130883142,-0.445208609,0.144507781,-0.158183828,0.0147968279,0.169887528,-0.370814741,0.2289837,-0.276386499,0.0499088243,0.0190781243,-0.341655016,0.51963973,-0.298777074,-0.263644278,-0.373904347,0.048591353,0.476988643,0.235417932,0.0033701756,-0.563085914,0.294921875,0.0683185384,-0.133756727,-0.327179372,0.305664062,0.501683712,0.00802398473,-0.279487103,0.0830694363,0.578933179,0.294013262,-0.0574040562,-0.409814447,-0.326897323,-0.0135782026,0.0764334872,-0.414832354,-0.0219474602,0.0622400418,-0.500075877,-0.523883939,0.0274062287,-0.0109618995,0.416932106,-0.806249976,0.223678291,0.456712365,0.271472692,0.195776641,0.0827491209,-0.447265625,0.129371554,-0.196791798,0.505732,0.197231904,0.484647542,-0.239209995,-0.26267454,-0.0722509474,0.286159426,0.0729456842,-0.17720367,0.509680688,-0.216791034,0.161120534,-0.606384277,-0.178193629,-0.159116596,0.349600703,-0.188305333,-0.101538949,0.289038539,-0.604129493,-0.462991655,-0.392590642,0.0348780192,0.256810248,0.723214269,0.166000128,-0.0337759629},{-0.26076263,0.48148438,-0.21040635,-0.27532208,0.18941793,0.42643875,0.31927904,-0.05688974,0.2890625,-0.43596917,0.08641851,-0.11987674,-0.0105891,-0.09348325,0.05604709,-0.59375,-0.59605825,-0.02214518,-0.50118,0.32498664,0.31927577,0.22412471,0.27054167,0.6724609,-0.14067407,0.33878347,-0.2367513,0.00998223,-0.5080966,-0.06444231,0.7324219,0.1411625,0.61274856,-0.39556527,0.26758537,-0.3642288,0.2260352,-0.7757813,-0.54578996,-0.01382126,0.5291913,-0.06985419,0.28230453,-0.07448453,0.01660581,-0.10551891,0.39137027,0.4032638,-0.5860305,0.20752066,0.5964543,-0.31047356,0.16502462,-0.40036148,-0.5448405,0.5591216,-0.49423078,-0.14642553,-0.7120536,-0.3076539,0.02045626,0.5253631,0.668679,0.11643391,0.14895421,-0.3017164,0.04701678,0.41790092,-0.0196573,0.41413274,0.75065106,-0.19290546,0.16650221,-0.1567525,0.02302076,-0.06927557,0.12532693,-0.02317856,0.30754206,0.2206492,0.37409607,-0.2841199,-0.57734376,0.10372625,0.6738281,-0.2045961,-0.21135603,0.01754805,0.20510948,0.10178462,0.01183337,-0.20745882,-0.19921696,-0.39004967,0.28419644,-0.33305198,0.03914891,0.11278256,-0.16261524,-0.6796875,0.56220704,-0.07931885,0.14846802,-0.32511124,0.21657833,-0.22952604,0.5291606,0.49829772,0.0088416,-0.23683049,-0.1308841,0.22370067,0.00183167,-0.53164065,0.65527344,-0.26265323,-0.28223103,-0.18263409,0.10597409,0.20355007,-0.6455078,0.16451392,0.58731616,0.2237332,-0.02495757,-0.09106644,0.19885743,0.05199284,-0.0659119,-0.06735858,0.0428974,-0.01750247,0.389373,0.18455994,-0.5735828,-0.28700817,-0.51915324,0.21867931,-0.23429257,0.9713542,0.17473035,0.07564699,0.43324497,0.30360165,0.05465133,0.11792172,-0.39424682,-0.17342412,-0.64075524,0.09934105,-0.20146602,0.28997394,-0.4159273,-0.05199717,-0.36524853,-0.06964309,-0.02110543,0.13814592,0.65904015,0.5613839,-0.22216663,-0.44670758,0.02426742,0.2870901,-0.09061476,0.47427264,0.46486545,-0.24233148,-0.33684894,0.13869636,-0.02140386,0.4801953,-0.18162727,0.5272217,-0.3966411,-0.00872328,-0.05913879,0.3590228,0.18800166,0.10099393,-0.60784316,0.30252686,0.22351821,-0.05162912,-0.2006197,0.18158393,0.85253906,-0.00806252,-0.4269377,0.51398027,-0.14688544,-0.94921875,-0.13277231,0.22116391,-0.11422032,-0.16694805,-0.07256467,0.1586839,-0.04136405,-0.15328152,0.51382214,0.02486601,-0.33593166,-0.07275197,-0.08321021,-0.23782331,0.14844106,-0.74243164,0.02393073,-0.17625794,-0.47671273,0.10130577,-0.24610007,0.28411457,-0.49841797,-0.23956995,-0.13771948,0.1493537,-0.01308764,0.7083333,0.0177384,0.16595194,-0.4530134,0.1391512,0.38063964,-0.3565481,-0.429796,0.11768146,-0.03638953,-0.28416035,0.14647382,0.5810937,-0.28808594,0.24707413,0.11966903,-0.3056066,0.03760121,-0.50590944,0.03347879,0.22300734,0.1860194,-0.22359449,0.07494315,-0.05240241,-0.38065803,-0.46827364,-0.07053745,-0.18227796,-0.01730328,-0.1650194,-0.370324,0.13719995,-0.27246094,0.568241,0.07202113,0.10448569,0.16348054,-0.09475101,-0.0411704,-0.5655488,-0.1436239,0.19689061,0.14596087,-0.15139052,-0.25877306,0.03640067,0.08888105,0.1391795,0.34868246,0.03036772,-0.1095899,0.1406209,0.24624188,0.00948121,0.0979042,0.5168636,-0.2138976,0.2939306,-0.12595654,0.49015298,0.1777176,0.40731338,0.24661115,-0.16016564,-0.10245664,0.14784625,0.20987274,-0.00983173,-0.21878342,0.57237786,-0.47839355,0.21090227,-0.515625,-0.3377902,-0.05127612,0.00437328,0.09453008,-0.49813843,-0.1000075,0.11770853},{0.301740527,0.0120517444,-0.0147642773,-0.0425955057,0.287041098,0.137193158,0.232864901,-0.384709299,0.42385602,0.0981406793,-0.0542097054,-0.315447807,-0.327076107,0.22899437,-0.249272659,-0.0996301994,0.151852697,-0.123635486,-0.158167019,-0.0695882216,0.608816981,-0.487202644,0.100577921,0.140645131,-0.774553597,0.0769294649,-0.53515625,0.224540308,0.025770044,-0.209946394,0.421969503,0.00471244706,-0.191857472,0.104288444,0.160657287,-0.701738894,-0.458075941,-0.0318120979,-0.00749866245,-0.0932769254,-0.567434192,0.0226630699,0.194827884,-0.785937488,-0.264564544,0.13242586,-0.468696743,0.00950178597,-0.0735230073,-0.0837372541,-0.576148331,-0.0703042224,0.397479028,-0.199226245,0.336891711,0.416057169,0.0542823747,-0.433673292,-0.0159996897,-0.868164062,0.0742962062,1.07291663,0.527644217,0.0428407453,0.384936124,0.011236771,-0.00305495691,0.449139982,-0.359366536,-0.125846118,-0.324027836,0.530937493,0.30178681,-0.0562985316,-0.0329694562,-0.26847598,0.0642063096,-0.280198753,-0.0744196177,0.434338599,-0.238668084,-0.438179344,-0.456311673,0.796440959,0.0908780769,0.0964439288,0.343076497,0.042822931,0.513901651,0.24756752,-0.191424504,-0.278330654,-0.450365156,0.491288453,-0.0666886568,-0.718149066,0.0154188601,0.391430676,-0.155317217,-0.198749676,-0.210000932,0.200188592,-0.331183672,-0.880859375,-0.365266651,0.220737696,-0.191483811,-0.425560147,0.162072167,-0.0366106443,0.601151288,-0.205091238,-0.0227853227,-0.154794335,0.419977367,0.4064188,-0.566105783,0.537109375,1.03515625,0.114738047,-1.0625,-0.332934201,-0.204075232,-0.0108398888,0.506063998,0.169935331,-0.209907934,0.112038247,0.0642263889,-0.0295160748,0.715624988,0.144940957,-0.415984124,0.173376828,0.084773697,0.0861460194,-0.821614563,-0.157264128,-0.0417265333,0.140593454,0.360346168,-0.301791489,-0.25390625,-0.389715791,-0.908203125,-0.353557169,-0.305591494,0.165059268,-0.521014631,-0.125544995,0.104980469,-0.0554288514,0.200195312,0.149404138,-0.131849453,0.0182767082,0.558948874,-0.578410804,-0.0993832201,0.0709863529,0.0185716674,0.161144003,1.1015625,0.195349038,-0.107856974,-0.00582712842,-0.000918240403,0.543915749,-0.537243128,-0.405412942,-0.574860096,0.42073074,0.177793652,0.109616563,-0.00489583099,-0.204211533,0.478456438,-0.0575282834,-0.570800781,-0.18748948,-0.015188653,-0.0781107172,-0.259765625,-0.150394529,-0.0530780181,0.330993652,-0.144122988,-0.0292932354,-0.141150489,0.540976584,-0.106146045,-0.436406255,-0.216174856,0.0179018714,-0.417084694,-0.193307802,0.377101928,0.297803521,0.14117533,0.0261152051,0.800390601,0.336838156,-0.192850515,0.654146612,-0.155747637,0.228112742,-0.0260692462,-0.0942311287,0.47491163,-0.205126703,0.167444527,0.555841625,0.377801001,-0.410965651,0.20986411,0.10404522,0.00595121179,-0.289082497,0.044408612,0.116439909,-0.00906204898,0.549136519,0.0683580413,0.499782979,-0.0257653277,0.0893410146,0.342739373,-0.0548050068,0.534667969,-0.210925326,-0.286226988,-0.0133834649,0.146470934,-0.230316073,0.280282289,-0.0314431265,-0.387751639,0.216252387,0.307601273,-0.121363461,0.494200259,-0.0617670491,-0.0372395255,0.442147076,-0.0189932361,0.10716895,0.0520169362,0.768415153,-0.193930715,0.10107252,-0.680013001,-0.490956187,0.105914995,0.113558531,0.451883763,0.207437575,-0.346672446,0.229477227,0.147476763,-0.444310904,0.408054143,0.077107355,-0.737890601,0.190911755,0.640625,0.499322921,-0.286104739,-0.454859823,-0.315452397,-0.125063434,-0.247005567,0.0529531017,-0.365053296,-0.145018414,0.368092805,0.547219694,0.107673183,0.0685958788,0.35158059,0.249606282,-0.258747965,0.0183565151,-0.151347876,-0.197269201,0.127963975,-0.0327406451,-0.222195089,0.0598043315,0.0373837873,-0.610677063,0.0115255676,0.127863511,-0.239251286,0.2578125,0.59765625,-0.339895159,0.0710324422,-0.0788644627,0.329047799,0.138685241},{-0.5675951,-0.09741483,-0.12107677,0.0062218,-0.6247396,0.33497936,-0.430619,-0.35059983,-0.24366114,0.13574843,0.06811796,-0.13135765,0.35565838,0.00761798,0.36845496,0.9921875,0.24463442,0.17581227,0.03366997,0.2742553,0.71372765,-0.1830232,0.9140625,-0.1655063,0.06190639,-0.28039616,-0.19537409,-0.06613325,0.22418863,0.10540956,-0.4891374,-0.14351784,0.0722637,-0.03175154,0.44212964,0.00859784,-0.02482047,0.16996069,0.04882886,-0.3849188,0.07130568,0.221078,-0.01912311,0.18702757,-0.17081992,-0.37199423,0.03536768,-0.2060931,-0.11130175,0.3193135,-0.14942098,0.08225661,-0.18314251,0.21575157,0.18799739,0.2417037,-0.06446261,0.3745278,0.02769945,0.04688689,-0.5010731,0.07372614,-0.3594846,0.28515625,0.50566787,0.08303733,0.32329643,-0.09812665,0.17821807,0.5370502,0.06689219,-0.11870161,0.20796476,0.01581945,-0.73413086,-0.08030938,0.14939748,-0.47044346,0.04087615,0.20648989,-0.2979096,0.3398778,0.14652292,-0.07740404,0.00408635,0.11058437,-0.05833232,-0.39925426,0.70885414,0.12419411,-0.28818253,-0.18654919,0.04813931,0.8261719,-0.5190972,-0.02871262,0.01020485,-0.01379198,0.08623645,-0.11744028,-0.60394967,0.37981427,0.11718417,0.11737431,0.3847409,0.33802417,-0.42305815,0.2157638,0.84877235,-0.1699425,0.04436804,-0.30963448,0.18259722,-0.38529497,0.19627555,-0.48583254,-0.07466976,0.12128131,-0.20891485,-0.05164361,-0.0165442,-0.00610972,0.0429681,-0.18598074,-0.11355111,0.38635898,0.12157091,0.32428044,-0.23740366,-0.07420143,0.35945812,-0.04152251,0.52263623,0.19089271,-0.41317,0.6700068,0.21920554,0.20992298,0.5991211,0.06314332,0.40326086,-0.5740885,-0.26854026,-0.3612027,0.404182,-0.09741554,0.08858937,0.07889825,-0.05627315,0.05336428,0.7062752,0.76953125,-0.90066963,0.59194714,0.36920264,-0.15922135,-0.26650798,-0.04310438,0.39441732,0.03021083,-0.7523438,-0.02362426,0.01866068,-0.25679097,0.22898877,-0.19190294,0.276375,0.25677082,0.0021054,-0.08987756,0.59133184,0.1996673,0.0465103,0.04067728,0.15865915,0.04821395,-0.32431892,0.09297083,-0.38372228,0.3007133,-0.0362555,0.00472149,-0.20555933,0.42313057,0.40129742,0.702567,0.37926963,-0.43460518,-0.03566823,-0.06912069,-0.04220737,-0.25686827,-0.11156049,0.3095703,0.26076353,0.2724923,-0.5098903,0.2782747,-0.21288876,-0.02155031,0.19972004,-0.49596354,-0.1037119,0.3574577,0.45193285,-0.10649468,0.2548607,-0.03590865,-0.57788086,-0.11209715,0.02713127,0.11420787,0.31829637,0.20895046,0.11403853,-0.44447544,-0.22470532,-0.07716667,-0.2802326,0.25492814,-0.28612557,-0.07624163,-0.18894786,-0.12980264,0.29784766,0.08324175,0.13956532,0.15288742,0.10692165,0.7020089,-0.02833664,0.0768649,0.1248504,-0.18993294,0.33116424,0.31248885,-0.07100973,-0.08594611,-0.0761301,0.24500199,0.6074219,-0.34084556,-0.42856377,-0.21139176,0.73567706,0.4328125,-0.01562758,0.5800151,-0.27539062,-0.344692,-0.2284074,-0.9511719,0.25685966,0.10397626,-0.08785744,-0.07813104,-0.08009102,-0.43757167,0.13522895,0.10404361,0.02179813,0.26461226,0.01196799,-0.2762945,0.39040798,0.19469717,-0.33698657,-0.48238906,-0.19282568,0.3065818,-0.03306085,0.13426372,0.16802916,-0.2968113,0.27248797,0.15279838,0.5572917,-0.46673283,0.2548092,0.7753906,-0.25061157,0.05787755,-0.134741,0.14455651,-0.12890385,-0.02405499,-0.07447145,-0.39149305,-0.08277229,0.02082835,0.14603896,-0.0834739,0.11108778,-0.05360212,0.14247116,0.23925781,0.00554794,0.09884983,0.67612094,0.0874304},{-0.11007289,-0.20074508,0.08347074,0.1513698,-0.4158476,0.09789237,-0.19378513,-0.33503607,-0.02771734,-0.30937153,-0.615,-0.39055791,-0.2646696,0.656064,-0.317415,0.6052912,-0.20261127,0.372046,0.23631927,0.62834823,-0.12843418,-0.05262239,0.66627604,0.24017093,-0.24556608,0.01839227,0.02533184,0.23778968,-0.00125319,-0.41234335,-0.41716695,0.515625,0.16365713,0.35249954,-0.17087153,-0.22303839,0.10062306,-0.01233722,0.30774587,0.17187253,0.02813552,-0.5330602,-0.2909974,0.13679531,-0.41786024,0.08473079,-0.3153909,-0.17676969,0.31553707,-0.3337565,0.17332149,-0.05880212,-0.19770618,-0.11595935,0.39274088,0.38664597,0.38176906,-0.19921558,0.3828891,-0.39753735,-0.8496094,-0.12934658,0.38730875,-0.7597656,-0.31150588,-0.2890625,-0.11651066,0.05661948,-0.11851154,-0.5891335,-0.10787383,-0.03653794,-0.00099997,-0.10226811,-0.31736425,0.2196156,-0.03000778,0.42982423,-0.00310777,0.34652895,-0.42071533,-0.04688252,-0.07617904,-0.1796491,0.19089966,-0.11281756,-0.765625,-0.13465409,-0.22706975,0.03334893,-0.17388643,0.14403123,-0.92578125,0.6558459,-0.42097193,0.2235868,0.27644014,0.26548487,0.08015893,-0.04344918,0.35654852,0.04685789,0.25288224,0.0163614,0.1464464,-0.30961874,-0.03334976,0.07937472,-0.39574972,0.00199296,-0.19436517,0.33026087,-0.04066906,-0.358413,-0.2595737,0.50114185,-0.50110394,-0.00929296,0.19535954,0.23344596,-0.26757812,-0.52685547,-0.30179235,-0.3738621,-0.18408439,0.4055102,-0.6655971,0.13677722,0.49194878,0.6059028,0.19290598,0.25682905,-0.3075648,-0.28131023,0.12487219,0.28125,0.07764167,0.96484375,0.5097656,0.1201132,0.5691002,-0.12987399,0.23966567,0.14936687,-0.16107455,0.60381156,0.0497511,-0.63964844,0.23236787,0.07785648,0.55078125,-0.29009226,0.03118746,0.11154252,-0.1728023,-0.01895886,-0.27539384,0.11824247,-0.25195312,-0.02540592,-0.12596753,0.46739477,-0.13520907,-0.51555127,-0.2997084,-0.2646687,0.12181346,0.15527101,-0.31747472,0.12507744,0.34177944,-0.11871192,-0.00266096,0.2851633,-0.5449219,0.71484375,-0.00554622,-0.24514939,0.15777351,-0.10059463,0.35830966,0.21482275,0.10663824,0.31710938,0.26264688,-0.20156465,-0.19188406,0.06119294,0.15426078,0.2841278,-0.64663464,0.03770295,0.0353012,0.11905017,0.48107156,-0.06079192,-0.05431058,-0.12788936,0.10867363,-0.6354167,-0.00947672,-0.5455163,0.36200222,-0.34189025,-0.4734654,0.03758877,-0.6344866,-0.21192558,-0.26268294,-0.27818778,-0.04029266,0.25289378,-0.46863732,0.13088684,0.8229167,0.03221961,-0.1106348,0.12462191,0.6780599,-0.2626726,0.49632353,0.13033262,-0.10523789,-0.7236328,0.40028626,-0.38949344,-0.16844445,0.29969293,0.31159437,0.21782924,0.0693608,-0.14939873,-0.4737688,-0.3643617,-0.18511786,-0.0141369,-0.13864599,0.13034269,-0.10839184,0.74902344,-0.285211,0.475364,0.1801541,-0.29192582,0.283138,0.03842214,-0.09856851,-0.08474807,-0.890625,0.08595184,-0.21390894,0.12110537,0.35829878,-0.03698566,0.09571486,-0.20902652,0.5871931,-0.30568576,0.46858448,-0.34372506,-0.02502561,-0.85546875,-0.05867801,0.51258683,-0.42848188,0.08156665,-0.529495,-0.36421323,-0.58360744,-0.48901072,-0.73828125,-0.23334123,-0.5216239,-0.4900527,-0.48242188,0.23433207,-0.0075881,0.37012327,-0.87890625,-0.21150546,-0.04053824,-0.23198663,0.268531,0.03625152,0.09980264,0.3583303,-0.05933467,0.10861847,0.33316022,0.11179627,-0.06885117,-0.03282521,0.16099687,0.3116023,-0.19632587,0.6594238,-0.10768376,0.02276407,-0.4071082,0.18947594},{0.122593567,-0.0705409348,-0.12786378,0.426888824,-0.334063143,-0.0165538024,-0.285206109,-0.193290845,0.145506173,0.571874976,0.3419393,0.0085776113,0.525223196,-0.156187996,-0.207988873,0.113769531,-0.380741507,0.716579854,-0.321346521,0.672363281,0.230093554,0.153345674,0.262697697,0.173793703,0.389415383,0.366360307,0.186577886,0.313537061,0.334825307,0.427621692,-0.556936562,0.161566406,-0.110826589,0.649876654,0.047495842,-0.576337397,-0.230016738,-0.0959405228,0.276434541,0.0825124308,0.242142022,0.0019911218,-0.0133979917,-0.176319227,-0.288106889,0.230376616,-0.527531981,-0.361274362,-0.100075319,0.184568033,-0.158670023,-0.459804386,0.0962099954,-0.256785214,0.00876734219,-0.00780812278,0.0898544192,0.101370819,0.245127738,0.51953125,-0.112490915,0.0233638063,-0.0681056827,-0.0311266407,-0.0422135405,0.322183669,0.152853802,-0.00721630454,-0.0758921057,0.0199106,-0.0609520525,-0.341861069,0.131754145,-0.59765625,-0.119375467,0.408984363,0.296016365,0.220728531,0.0508048758,0.0106150843,0.168413818,-0.537683845,-0.051530093,0.167439312,-0.195875481,-0.236780748,-0.167009279,0.532947183,0.303692371,-0.387289315,-0.234389439,-0.0195123609,0.0354687236,0.102043934,0.23334603,-0.610608578,0.0493083596,-0.200734109,0.0572406612,-0.633231044,0.394480735,0.173313066,0.284122229,0.245103434,-0.27646485,-0.022721583,0.381897449,0.425761223,0.142618746,0.0968902856,0.326171875,-0.00142285042,0.634765625,0.0636252835,-0.188555315,-0.505989611,0.393256754,0.467252612,-0.02165851,-0.206645831,-0.18508108,-0.0567974821,0.230410844,-0.112101823,0.334866166,0.0109980386,0.256959856,-0.0625949055,0.085218966,0.0469834059,-0.770647347,-0.715745211,0.0424474627,0.201186135,-0.12791793,-0.12010581,-0.314528257,-0.0338293239,-0.938802063,0.540869892,0.0695187971,-0.139613003,0.0586140119,-0.0891113281,0.0119870091,-0.0399963297,-0.264698774,-0.599121094,-0.315382481,-0.119344458,0.145015627,-0.7109375,0.257774025,0.0842204243,-0.020819651,0.0584568121,-0.165983737,0.570223749,0.187304229,-0.14651829,-0.845312476,-0.408355325,-0.222216308,0.697021484,-0.254828125,-0.3046875,0.192827672,-0.14447774,-0.0399110951,0.461904407,0.141197085,0.0652006194,-0.274342597,-0.222086355,-0.384656012,-0.139696643,0.208003715,0.578559041,0.144967929,-0.564275563,-0.112578586,0.139684513,-0.0243531,0.0409102701,-0.121337071,0.270435333,-0.0609124117,-0.141638443,-0.8671875,0.761523426,-0.458799154,0.142099261,-0.0188573264,0.290009469,-0.0690644979,0.385721833,0.13472265,0.112757258,-0.0228363145,-0.0589405745,-0.0993814096,-0.294778973,0.413085938,-0.0458618589,-0.000346619578,0.196817309,-0.157184303,-0.495901197,-0.97265625,0.178719148,-0.0461437739,-0.104978278,-0.394476384,-0.00615984295,0.00835920777,-0.0607242249,-0.0652062446,-0.371124268,-0.0993865281,0.148371488,-0.222154573,-0.323921144,0.187903151,-0.256856143,-0.107878298,-0.067879416,-0.012515964,-0.0418448523,0.513808131,0.110124163,0.153360128,-0.390640378,-0.431008726,-0.558203101,0.147438005,-0.057253208,0.0842084959,-0.173774004,0.564751089,0.0507853776,0.0177430268,0.0496572517,-0.627929688,-0.124877311,-0.132795125,-0.111326486,0.0339299701,-0.267645806,-0.606915534,-0.123728186,0.146053076,-0.473164588,-0.0355588682,0.0377286635,-0.175302878,-0.0602998175,-0.278338343,0.00425932696,-0.0122881196,-0.428496242,0.231433824,0.0654029474,-0.0947121307,-0.0828095526,0.187502548,-0.288925916,0.400959253,-0.325236678,-0.152324423,0.0479910709,0.8359375,-0.485473633,0.398319125,0.334908426,1.171875,-0.121121086,-0.284105569,0.0158868544,0.457405239,0.112026483,-0.00180793589,0.260750055,-0.399058938,0.388482869,-0.142578125,0.215500265,0.732204854,-0.595618188,0.0636868402,0.28515625,0.170365557,0.402540714,-0.344717771,-0.155757472,-0.104289047,0.511997759,-0.554154813,-0.00353501039,0.953125,-0.666666687},{0.278349519,0.0927826241,-0.281114876,-0.197768375,-0.529846191,-0.203666702,0.170846015,-0.116921902,0.313431978,-0.261758089,0.0279876515,-0.035931997,0.75390625,-0.0187331643,-0.134773597,-0.0285671186,0.225547567,0.00919528399,0.0978816822,0.188333288,-0.27248624,0.161610559,0.437578112,0.500170887,-0.0584791824,0.314317256,0.0511126146,-0.394591331,-0.0851933658,-0.125093579,-0.0377297215,0.656640649,0.489937156,0.110085562,-0.252979338,0.436234087,0.33984375,-0.128426135,0.664375007,-0.320354968,0.13426441,0.366954565,-0.00752400141,-0.152785048,-0.0827491507,-0.346815169,-0.0781390369,0.0208413955,0.270451695,0.3290039,0.0970190763,0.228031993,-0.2578125,0.0242371205,0.00444058981,0.32125324,-0.630859375,-0.325189829,0.0967093259,-0.589021385,0.0615859441,0.812934041,0.0681387931,-0.632302999,-0.0613636151,0.398775548,-0.0952167884,0.0436661765,0.51889348,-0.522017062,0.342777282,0.629807711,0.4122774,-0.358356506,0.165630147,-0.553008199,0.163074762,-0.239755794,0.498734087,0.0499310158,0.229552925,-0.0327043049,0.175407246,-0.0471556,0.154248565,0.0505017117,-0.6171875,0.091069214,0.0460522845,-0.260597914,-0.16653654,-0.490966797,-0.0334623754,-0.649305582,0.230007499,-0.254859626,0.8046875,-0.159148499,-0.252958417,0.340645939,-0.456971169,0.0522623062,-0.478515625,0.0214062333,0.235848621,-0.633072913,-0.286091149,0.15573433,-0.157737195,0.436197907,-0.313390613,0.0665950254,-0.56640625,-0.184095427,0.315378636,-0.80078125,0.164010048,0.309640795,0.6328125,-0.327141881,0.163989857,0.056987714,0.271697104,-0.0778546333,0.095429942,-0.268487066,-0.0203192215,-0.117415473,0.205516919,0.678158939,0.387410998,-0.578354776,-0.23878929,0.245167017,-0.0541046374,-0.389637709,-0.566817462,0.0893545747,-0.275516897,0.055909235,-0.0561605096,0.128344879,-0.280270427,-0.407565802,-0.0852723122,-0.0346356295,0.0820384547,0.435623974,-0.000703871425,-0.0927606076,0.841681957,0.239202127,0.313357115,0.225986078,-0.548677862,-0.719726562,0.0915717408,-0.427820235,-0.0629172251,0.181147635,-0.0261371545,0.328950107,0.293843508,0.0129849929,0.0759213716,0.0279408526,-0.0912832171,-0.172294006,-0.327020764,0.090829514,-0.215277255,-0.34865275,-0.158185795,-0.415050298,-0.0369707569,-0.431691587,0.172865197,0.0847445279,0.138168409,0.32027182,-0.249267578,-0.32517755,0.675000012,0.212395579,-0.0590682551,-0.21001558,0.0434093289,-0.122767948,0.0832160041,0.01420868,-0.595170438,0.322289169,0.570126474,-0.191918135,0.355493784,-0.29312253,-0.173431799,0.71484375,0.558837891,-0.521276593,0.216761261,0.516927063,-0.151871949,0.204607815,0.834635437,0.96484375,0.00469064759,0.0123506868,0.119331092,0.185540915,-0.249246374,-0.252971858,0.0265526567,-0.113201983,0.258920401,0.31541732,-0.192868918,0.0540471263,0.536064684,-0.163065687,0.629971564,-0.00295043061,0.0438072383,0.280263424,0.565538168,0.112608105,-0.0895819291,0.0623464137,-0.428737342,-0.220291391,-0.402038038,0.0520116165,-0.490539551,0.142500266,0.161149278,0.174345925,0.130860969,-1.12109375,-0.230274335,-0.135813206,0.45118165,-0.161155403,0.252873778,0.256671876,0.106442086,-0.0254717898,0.407983065,0.172894821,-0.51171875,0.00561314728,-0.189946368,-0.0978644416,0.631453812,0.240210071,-0.0378320999,-0.103001244,0.615885437,0.163115919,-0.264572352,0.0693036094,0.580439806,-0.468146294,-0.471616,0.345726788,0.104713663,-0.104199037,-0.479703605,-0.226004466,-0.170442179,0.0141757,-0.0659179688,0.544852912,0.00455428194,0.425872386,-0.755859375,0.0811084732,-0.249671102,-0.113810718,0.154767334,0.217751458,0.0523852147,-0.674804688,0.32521683,-0.606370211,-0.0032329089,-0.135656521,0.502253592,0.0783980563,-0.385616988,0.642628193,0.367170066,0.253026396,-0.575760663,-0.249328613,0.201237589,1.0703125,-0.262736142,-0.17772688,0.241576254,0.498739123},{0.17623895,-0.5136719,0.1870784,0.05906988,-0.06055957,0.24366231,0.06422371,-0.10011027,0.60146725,0.76079965,0.22025065,0.13674626,-0.41722146,-0.11691725,-0.41032177,0.12281017,-0.22735955,0.6153193,-0.2041211,-0.01813189,0.3729861,-0.99609375,-0.08933494,0.1465235,-0.02390798,0.43987164,0.19633535,-0.12371492,0.21046187,0.20111877,0.13522701,0.06541729,-0.09178135,0.875,-0.19042246,-0.14748047,-0.18462299,-0.09002715,-0.05861364,0.18849602,-0.11655123,0.796875,0.55276924,0.6191406,0.08962352,0.05518335,0.13715504,0.05527051,0.38951308,-0.14937139,-0.38373214,-0.28418797,-0.86067706,-0.19192024,0.47844237,-0.11612602,0.3514178,-0.20996812,-0.15180683,-0.27053177,-0.23244262,0.12034437,0.14937025,-0.18694092,-0.23141961,-0.14356816,-0.28125,-0.5441176,-0.31924382,0.25876746,0.6560202,-0.05240059,0.39863282,-0.15039062,0.17682594,-0.25093517,-0.11569538,-0.4228324,0.10911054,-0.4355898,0.14456685,0.36902022,-0.19187531,-0.15916233,0.04787995,0.18065822,-0.3252281,0.90625,-0.10784443,-0.6734375,0.09056427,0.19880852,-0.5681108,0.5176432,0.04235559,0.43723193,-0.31845903,-0.24463303,-0.08177333,0.23625264,0.07201494,-0.57858455,0.17877564,-0.09207969,-0.7445313,0.05052356,0.51008064,0.02625514,0.12529467,0.12330356,-0.27148438,0.34179688,0.5064538,0.08915275,0.33293396,0.04841281,0.08837344,-0.29593307,-0.00790576,-0.29011616,-0.10771987,0.23186979,0.19818376,0.11452966,-0.36135772,0.65234375,-0.2295353,-0.10180218,-0.50768846,-0.728125,0.16935311,-0.50022537,-0.3173931,-0.01992033,0.36606872,0.19235224,0.1977815,0.0759482,-0.07300344,1.0859375,-0.40811434,-0.15629384,0.06765343,-0.2314908,0.4846591,0.45495924,-0.20209797,0.30751404,-0.92578125,-0.1709738,-0.09952965,-0.29986063,-0.278249,-0.03164169,0.01299402,0.09197418,0.22517903,-0.06392838,-0.41594192,0.8046875,0.49037907,0.03604493,0.56552595,-0.67393094,0.92578125,-0.53125,-0.2968577,0.07786074,-0.5889353,-0.0562746,0.11157372,-0.08640625,-0.13184078,-0.08302964,-0.07156976,-0.29791552,0.6098958,-0.34570312,0.44577026,-0.14549614,-0.04224303,-0.45776072,0.42855525,0.06838576,0.5846946,0.2415678,-0.31644243,-0.19040571,0.3621152,0.08253289,0.12231397,-0.0727303,-0.46797612,0.18262921,0.05594091,0.45896083,0.5117873,0.00328284,-0.83203125,-0.12690046,0.61305803,0.32711226,0.13472155,-0.2099633,-0.93359375,-0.03761115,0.09793303,-0.27444732,-0.80533856,-0.15526213,-0.16606052,-0.05019028,-0.3027035,-0.07520396,-0.59436035,0.05339508,-0.10206066,0.01079488,-0.24019013,-0.00521788,-0.02269525,0.17191054,-0.05709421,0.09156089,-0.2460831,0.29993853,0.5974609,0.13569981,-0.25880378,-0.09159122,-0.01562903,-0.37101862,0.0498231,-0.04915596,0.4061651,-0.4984131,-0.01338354,0.24885817,-0.08595109,0.06858779,0.34674114,0.01618756,0.02186052,-0.10040032,0.0488252,0.07665067,-0.27442324,0.32324752,0.39141133,-0.715625,-0.17871387,-0.3311175,0.34848633,-0.7421875,-0.03204859,-0.19625252,0.214767,-0.35349038,-0.38879976,0.5942383,0.6351563,-0.22211081,0.11649544,-0.19381985,-0.12791154,0.31633905,0.25064602,0.36392647,-0.20406984,-0.2036418,0.6640625,0.09227553,0.01643992,0.64875424,0.05041192,-0.05152595,-0.18749663,0.27826676,-0.2191746,0.04495997,-0.60581344,0.37894276,-0.24208392,-0.14743827,-0.16308594,-0.0543641,-0.27829632,0.3623162,0.87630206,0.04686723,-0.49311665,-0.12985408,-0.09667867,0.096422,-0.13129446,-0.4481687,0.7128906,-0.41814312,0.22507761,-0.04743076},{0.183570042,0.0786082819,0.264760792,0.327198088,0.0150300208,-0.222198486,-0.231377959,-0.288101941,0.649956584,0.0395407118,0.190941721,-0.53515625,0.0785758346,0.0939967036,0.0210380815,-0.0631968379,-0.0598606616,-0.0727704391,0.427405417,0.117014587,-0.0410162136,0.652832031,-0.691964269,-0.150844589,-0.36525619,-0.348544031,-0.939453125,-0.158606395,0.35736993,0.0725225136,0.00254857284,-0.0228512362,-0.104720004,-0.00275051221,0.219749376,-0.0998868272,0.36036104,0.0265030507,-0.0652012303,0.102746777,-0.109584436,0.213362172,-0.148779601,-0.000110552275,0.486828923,0.211449713,-0.296875,-0.266660482,0.470063299,-0.417043597,0.7890625,-0.234856561,-0.558137178,0.632486999,-0.00331538706,0.288118064,-0.368076861,-0.0102626542,-0.0573335364,0.106664993,0.169862598,-0.720703125,0.0812801048,0.255962163,0.156243697,-0.0854691043,-0.426565826,-0.118368968,0.0408928655,-0.0598501004,0.51966691,-0.586693525,-0.0981824324,-0.0250457134,0.095394358,-0.457064778,0.138609275,-0.725000024,-0.323963434,-0.104050539,-0.652043283,0.0471171774,0.326212555,0.202063516,-0.579545438,-0.393717438,-0.121779576,0.166005507,-0.030153662,0.0166851878,0.264598608,0.0486185364,-0.0515296236,-0.264596045,0.0555424914,-0.207593784,0.232411027,-0.166032791,0.640066981,-0.0126317628,-0.0167402383,0.0725179017,0.620781243,0.0593531206,0.487505347,0.13088958,-0.626838207,0.888392866,-0.295108885,0.185405865,0.202188864,-0.824999988,0.0572905131,0.134802967,0.185533851,-0.0969106108,-0.0803477243,0.339096963,-0.90234375,-0.152345642,-0.435445845,0.0492042415,-0.210905448,-0.288085938,0.192394644,0.210419804,-0.613462925,0.14795883,0.509435117,0.0417604744,-0.0234299768,0.203664735,-0.427553535,0.685677111,-0.255859375,-0.232399851,0.30661568,-0.0896049365,0.254890501,0.0231648888,0.227562353,-0.0565355346,0.647727251,0.0747040883,-0.152291611,-0.512695312,0.802734375,0.139639005,0.273406982,-0.408026636,-0.170885235,-0.734375,0.235111773,0.272424757,0.125556886,-0.153346375,0.0209478904,-0.554865062,0.366123736,0.0830797702,0.0515129194,0.123986289,0.498644769,0.739149332,-0.207490385,0.263718098,0.432685316,-0.442438096,0.510910571,-0.381792545,-0.439259201,0.121554747,-0.565557063,0.316203564,-0.439401716,-0.0433556661,0.0495667458,-0.223203599,0.744791687,-0.225096762,-0.178757682,-0.194280475,-0.189906895,0.509880543,0.102763228,0.249157801,-0.305678487,0.00539029343,-0.0415547565,0.921875,-0.258851767,0.18311286,0.455572575,-0.199629605,0.40601781,0.0163356885,-0.145565778,-0.159173474,-0.235873654,0.160151094,0.301708639,0.260758013,-0.0701101795,0.28528899,0.298851281,-0.490210265,-0.0156357791,0.298828125,-0.639322937,0.383609384,0.54296875,0.1255548,-0.0315378532,-0.132324219,-0.360369325,0.162649497,-1.0703125,0.0055632391,0.483940959,-0.125716627,-0.168932632,0.301845312,-0.152381316,0.423809886,0.29005444,-0.0515461862,-0.408030778,-0.0216081869,0.153796613,0.184050322,0.287050188,-0.331022501,-0.818750024,0.0466035455,0.466661513,-0.517616451,0.0330803134,-0.0312855989,-0.551618278,0.0549250506,0.0761730671,-0.032216955,-0.678571403,-0.973437488,0.00402064621,-0.0632851571,0.197744459,0.372960716,-0.40445742,0.416696936,-0.29598102,0.145490944,0.303782254,-0.312352598,0.0426247343,-0.218751892,0.184049129,-0.168978751,-0.580221057,-0.161565423,-0.0663678646,-0.00667077815,-0.123980701,-0.260716408,-0.0472238585,0.188469753,0.0360015817,-0.103023186,-0.134838983,0.479614258,-0.760156274,-0.0905871987,0.33203125,0.382795215,-0.0683361664,-0.369241059,0.150907174,-0.0458428711,-0.141526148,0.209963918,-0.429170489,-0.046593789,-0.308695018,0.355277836,-0.213681936,0.0384465307,-0.307612777,0.183616564,-0.604910731,-0.0328304246,-0.392450958,0.309570312,-0.536777735,-0.0513792895,-0.0259386506,0.1100787,-0.251078427,-0.201118141,0.013808826,0.298828125},{-0.21578906,0.16991585,0.32235008,0.31345287,-0.1252576,0.27451962,-0.26847878,0.11395794,-0.31739458,-0.13281907,-0.34459496,-0.67115164,-0.01764715,0.7941707,-0.18944626,-0.16694765,0.7203776,0.34463444,0.3253485,0.1008651,-0.3272731,-0.39443108,0.22900127,0.16016622,-0.09961137,0.0239287,0.15390699,-0.08542526,-0.2704183,-0.4383113,0.45498797,0.5790441,0.21633223,-0.12788258,0.30858445,-0.8390625,0.6092529,-0.16653515,-0.24623825,0.04238062,0.02298923,-0.15331368,0.14940374,0.03748138,0.20252347,-0.05040063,-0.20511736,0.28806064,0.40227592,0.16702197,-0.3408707,0.10941033,0.5697917,-0.0732686,-0.16209944,-0.3447164,0.6585478,-1.03125,0.20058995,-0.19629279,-0.05588433,0.2192062,-0.03895049,-0.16938955,0.21481994,-0.08008339,0.11887269,-0.11086003,0.14743942,0.07196335,0.13082325,-0.2880904,-0.94140625,-0.5289352,0.22102864,-0.04444729,-0.6195313,-0.48620495,0.42079565,0.08102107,0.1503817,-0.02231601,0.4870477,-0.47681826,0.05591981,-0.1257131,-0.7,0.09644523,-0.25154743,0.06396231,0.09714591,0.48104942,0.5139509,0.3545995,-0.06882098,0.53765625,-0.42009944,-0.46179435,-0.05262896,0.6308594,-0.0565094,-0.4099897,-0.41058084,-0.01551785,0.34464815,0.01798087,0.09011754,0.31342128,-0.34199893,0.07593203,0.0576829,0.17761378,-0.08322514,0.36346063,0.10151988,-0.6220703,0.00962674,-0.12009951,0.8113839,0.43430203,-0.29391447,-0.25286734,-0.14937958,-0.36323476,0.07863653,0.10687536,0.6061198,0.10693499,0.07595469,-0.22404474,-1.046875,0.37913772,0.12794279,0.03773781,-0.2636435,-0.32420385,-0.2368814,0.3984131,0.17386448,0.274364,-0.2616252,0.50184757,0.24890907,0.25290778,0.2108494,0.04080732,-0.01641531,0.256875,-0.05056147,0.31839192,0.06814062,-0.06207795,-0.10081693,0.29492188,0.05898216,-0.01333094,0.30463868,-0.4216433,-0.26860338,0.32025826,-0.5061891,-0.00605456,-0.47652003,-0.1552801,-0.21977997,-0.11011789,-0.18557183,0.5960938,-0.27237955,0.21775119,-0.28803894,-0.59375,-0.07568423,0.859375,0.11158811,-0.01409539,-0.22855276,-0.09355143,0.60026044,-0.21091951,-0.57629395,-0.37299147,-0.34558594,0.10861932,0.12008962,0.14156243,0.20172718,0.68331474,0.40323734,0.06325924,-0.1714008,0.08034302,-0.16793835,0.05459199,-0.38604403,-0.30753154,-0.1132705,-0.06882033,0.26646507,-0.10154042,-0.07370301,-0.24028794,0.24476562,0.21378718,-0.12578095,-0.28607708,0.5336416,-0.03048364,-0.13674456,-0.01085508,0.18512303,-0.09425687,-0.31151655,1.0390625,-0.09378488,0.5627298,-0.95703125,-0.38760915,0.01272009,-0.04458299,0.39441746,-0.14200921,-0.06736175,-0.32987708,-0.23576473,-0.108349,-0.23045875,0.44208333,-0.23815751,0.33875155,-0.00961056,0.15920265,0.25057575,0.08076008,0.49735442,-0.43558115,0.2578125,-0.00175055,0.3311166,0.04844611,0.07127592,0.24548696,-0.39636382,-0.6089908,0.5125,0.2685444,-0.11301694,0.01566662,0.13176547,-0.26953125,0.30374712,0.08714287,-0.04181765,0.4247548,0.03688571,-0.05545388,-0.05957156,0.10935529,-0.18309008,-0.15429333,0.49314693,-0.1337509,-0.621875,0.11424012,-0.04968642,0.23432101,0.16103247,-0.7688519,-0.09156321,-0.3485874,-0.05272749,0.28320312,-0.12487201,0.08080807,-0.5692472,0.16163135,0.25768805,0.06314778,0.10308361,0.7130409,0.20364219,0.15533893,-0.23134652,0.26466528,0.25482732,0.4734375,0.37509155,-0.05933427,0.3922631,0.25876886,-0.17090699,-0.5234375,-0.30477348,0.21824372,-0.3252054,-0.23777127,0.40621632,0.16933861,-0.15962633,0.30664062},{0.03272231,0.5174479,-0.06592033,0.22364046,-0.43658394,-0.2528884,-0.7636719,-0.41006154,-0.6467634,-0.20178711,-0.06859598,-0.34660682,-0.35536343,0.14744532,0.12436091,0.24655019,0.0022099,-0.06595307,-0.00205575,-0.2744774,-0.0265935,0.376878,0.3993168,-0.02539742,-0.04759862,-0.23634307,0.34677333,-0.5171638,-0.11566971,-0.14012137,0.40333632,-0.08326047,-0.03368912,0.15472595,-0.09201746,-0.305578,-0.08548366,-0.54308367,-0.41705137,0.35148063,-0.06633639,-0.17626728,0.09425585,-0.00998127,0.05101584,-0.5918997,-0.23635918,-0.52375,-0.15574849,-0.02735,-0.06125877,0.2880772,-0.18943956,0.4715834,-0.098341,0.06186901,-0.07007764,0.00843865,-0.07619546,0.14405438,-0.13572635,0.13667245,-0.13868257,0.3046875,-0.14357351,-0.27148438,0.03100017,-0.10424513,0.3095266,0.64266306,-0.04004575,0.18938097,0.2822339,-0.7175293,-0.42086446,-0.2880904,0.50405943,0.06684299,0.07689191,-0.04391081,0.12010459,-0.12245963,-0.09961572,0.07104367,-0.3192065,0.22800994,0.05564604,0.30760625,-0.21778072,-0.12789327,0.5774357,0.09007405,0.25389552,0.43363222,0.3692241,0.14353657,0.24115284,0.04280102,0.1532847,-0.27734375,0.24066143,0.17965877,0.38655302,0.33170572,-0.47838962,-0.17422904,-0.16006143,-0.13918795,0.15627785,0.26271752,0.29990897,-0.4150894,0.32527325,0.01846052,0.07490739,-0.23097864,-0.11442508,-0.69613487,0.2920677,-0.6326427,-0.28421336,-0.3720635,-0.2329702,0.07616658,-0.39327073,-0.03846094,0.23230052,0.39238822,-0.43802083,-0.04963899,-0.6855469,0.01089783,-0.04780883,0.16703096,0.32002965,0.18655537,0.09571206,0.01575765,-0.46168154,0.1728584,-0.09978896,-0.00352424,-0.6899858,0.29579818,0.759375,-0.25592393,-0.25687075,0.15527193,-0.06910165,0.01075476,-0.16000775,0.27913335,0.2694479,0.1704145,0.23979276,-0.14157692,-0.04149453,0.357349,-0.98307294,-0.00326254,-0.10180292,0.44282228,0.1013203,-0.4374783,0.2586628,-0.15919591,0.28418237,0.35650712,-0.30859375,0.11203971,-0.23824565,0.02608712,-0.26456705,-0.19969416,0.5823864,-0.15335709,0.1817343,-0.01924571,0.21238111,0.12575403,0.3164224,-0.10405594,-0.28997672,0.3038131,-0.01280945,0.3720491,0.07057363,0.22560017,-0.24884824,0.37409657,0.19823882,-0.34767735,-0.874442,0.5171875,-0.26069936,0.65353954,-0.12112522,0.15236862,-0.01072824,0.2168987,0.26855206,-0.18548301,0.23334531,-0.01483689,-0.29012218,0.23738961,0.66936386,-0.1669509,0.05989992,0.06905356,-0.0779238,0.37696955,-0.26865155,0.49173093,-0.26953125,-0.00996007,-0.13028787,0.01652262,-0.17092773,0.49750808,0.3320452,0.27647838,0.37804458,0.16896865,-0.19526619,0.28229958,0.3730029,-0.23385815,-0.12080326,0.34853652,0.2441033,-0.23392199,-0.235761,0.00927517,-0.40055802,-0.1796632,0.1218164,-0.18069336,0.1217868,0.46255258,-0.04624031,0.23038584,-0.05941713,0.01050994,0.04393537,-0.13772905,-0.264666,-0.15723653,-0.05602387,0.3884927,-0.61422414,-0.625504,0.29399702,0.08889047,0.06255458,-0.13277708,0.06186377,-0.22215085,0.10301391,-0.5251116,-0.0832312,-0.09511789,0.390625,-0.10083415,0.28612402,0.20993128,-0.07663666,0.10807972,0.21649018,-0.16308913,-0.28812435,0.33210057,0.38662928,0.28416756,0.08153187,-0.139591,0.15912862,-0.21632016,0.62597656,0.3741161,-0.04691989,0.21972656,0.19974773,0.22601083,-0.8671875,-0.04893627,-0.56414473,0.22697844,-0.09497867,0.20555045,-0.18751347,0.03873681,-0.296875,-0.3928469,0.6263861,0.10353296,-0.5825738,0.01203364,0.4589127,-0.12297317},{-0.06870595,0.00687437,0.0783962,0.4745698,0.19924471,0.07887897,-0.0307311,0.02198368,0.40815973,-0.07269543,0.5157878,0.3953826,-0.03540938,0.39737666,0.15277849,0.15910994,0.01700237,0.37992218,-0.18745655,-0.2880616,0.59720206,0.07611571,-0.20312256,0.00723346,0.14706804,-0.16602778,-0.0111445,0.4132133,-0.44165483,0.02584863,-0.10106161,-0.27734375,-0.2133902,0.09155047,0.3202657,-0.41987625,-0.23815976,-0.3906423,0.29482886,-0.45410156,0.1611121,-0.05850952,-0.06191774,0.0759153,-0.60514325,-0.11696443,-0.48325622,0.21532579,0.12490137,-0.44830197,-0.1018461,-0.7248884,0.06395496,-0.33690828,-0.0119059,0.5098649,-0.03756971,0.277181,-0.4558652,-0.32720247,-0.1220908,0.09602311,-0.43755633,-0.2666061,-0.2167418,-0.21777143,-0.06492759,0.46877244,0.01990505,0.10789615,0.0299525,-0.26069745,0.07592802,-0.22995247,0.60839844,-0.53736585,0.05064046,0.21342358,-0.91015625,0.27333167,-0.20212358,-0.08670855,0.05070069,0.9609375,-0.07883737,-0.01417482,-0.14499484,-0.00698642,0.4629136,-0.27042115,0.07640588,-0.11401103,-0.53125,0.2041632,-0.00951301,0.36147836,0.3056939,-0.41209033,0.21091801,0.17671245,-0.0304494,0.11696647,0.23046595,-0.38983074,-0.11135032,-0.22115132,-0.890625,0.18265978,-0.10133488,-0.06761602,0.40503588,0.71484375,0.53299534,-0.25879914,-0.07837728,-0.23971121,-0.13382313,0.27535528,-0.13967326,-0.55767465,-0.06005941,0.12786493,-0.11498763,0.05771505,-0.32318774,0.04053938,-0.6368075,0.16699219,0.09692202,0.575362,-0.633286,-0.00446939,0.13481082,-0.31045443,0.00923367,0.352592,-0.39058253,-0.46373197,0.27054954,-0.13906996,0.23438299,-0.12420306,-0.10035587,0.15621048,0.507862,0.67537713,0.31041667,-0.4373798,-0.01677006,-0.06419291,0.24123263,-0.14063558,0.859375,-0.18110338,0.15287293,-0.8050426,-0.01257651,0.09522371,0.25014055,-0.47955137,-0.24874552,-0.11619247,-0.37590542,0.25053942,0.07132301,-0.12224466,-0.31144205,-0.25390625,-0.41043946,0.0713039,-0.10204671,0.66264206,-0.11448763,-0.39773867,-0.82747394,-0.25681517,0.06020345,-0.02915843,0.22941361,-0.91015625,0.02005609,-0.29775655,-0.07690933,-0.180196,0.03218888,0.10859881,0.08934385,-0.45215723,-0.21344522,0.48421806,-0.09989536,0.10837127,-0.09962238,0.13136135,0.33100045,-0.0225442,-0.20992076,-0.09199318,0.01262413,-0.09595663,0.317419,-0.11182143,-0.07885496,-0.09058064,0.26655507,0.05888063,0.03419445,-0.7775735,-0.69308037,0.6121962,0.2731771,0.29981115,0.24461114,0.07247886,-0.06910058,0.5345553,0.11152498,0.7084517,0.79352677,-0.2783203,-0.40246332,0.08230498,0.23388802,0.30966187,-0.22646365,-0.0413904,0.6551847,-0.49666667,0.10033844,-0.33907092,-0.671875,0.39946547,-0.07884289,0.02453417,-0.1139908,-0.6605469,0.06904297,0.11622306,0.20510514,-0.04773019,-0.20109676,-0.66595984,-0.02882366,-0.42950207,-0.1709373,0.07150396,-0.04320347,-0.06063316,-0.45626986,0.21668805,-0.04460411,0.15139113,0.3173271,0.07030822,0.36210364,-0.24614665,-0.5119681,0.44198877,0.12503418,-0.14847249,-0.47265625,-0.06322373,0.16009665,-0.339036,-0.6040483,0.06737863,0.22838518,-0.54088825,-0.05982278,-0.3338192,-0.6026278,0.6071325,-0.14543964,-0.00700373,-0.14303426,0.12396275,0.6516927,0.04433472,0.23583256,-0.55251735,0.80859375,0.6067708,0.4365553,0.1542608,-0.03466797,0.08587767,0.8300781,0.1972588,0.16452563,-0.46184894,-0.24659365,0.82421875,0.0355299,-0.31039947,0.16654588,0.21964699,0.2044862,-0.6417026,0.84375,0.06140861},{-0.0400638543,-0.28512314,-0.243123367,0.198261753,-0.214807048,0.047601562,0.256813616,0.0483243018,-0.188917682,-0.0359418653,-0.733258903,-0.0410282947,0.00558272982,-0.140181109,-0.308513701,-0.358657539,0.594270825,0.12599428,0.27236715,-0.209978074,-0.190894827,0.0903154612,0.0752157867,0.181096882,0.28031525,-0.358402669,-0.340752184,0.144997001,-0.127437487,-0.0416140519,0.106489211,-0.21687226,0.240657657,-0.0130358869,-0.131809369,-0.050043758,0.214351922,0.711495519,-0.208054796,-0.0705323443,0.488009512,-0.114242442,0.375888467,-0.332091957,-0.704358578,-0.164558098,-0.183626726,0.355614513,-0.207007751,0.100338928,-0.078644231,0.117167279,-0.232989475,-0.513841689,-0.0455547087,0.294921875,-0.0539769679,0.0761292279,0.182162881,-0.0616977811,0.0680914149,0.0683505237,-0.340830714,-0.0779065564,0.335893869,0.277140707,0.0967175364,-0.196773216,0.0895282254,0.224582791,0.563895106,-0.219190359,0.510901153,0.0613630377,-0.2734375,-0.025830932,0.00127541414,0.0961594507,0.564138114,-0.452011704,-0.106928065,0.230838254,-0.250604182,-0.0274432972,-0.0305504613,0.236412689,0.256876618,0.840198874,0.290067583,-0.148440003,0.345571816,0.0076427944,-0.0761751458,-0.126923665,0.12575224,0.00243717479,-0.215756893,0.191351235,0.794084847,-0.192907751,-0.143542632,-0.0602730475,-0.272533268,-0.309653431,-0.260677665,0.497365564,0.0450817496,0.348629117,-0.0384567343,-0.263605326,0.114948966,0.213245079,0.412062317,0.288042098,0.44156462,0.0790885165,0.252961189,-0.204146221,-0.30078125,0.372918367,-0.143017307,0.119435593,-0.159182742,0.00114312349,-0.654641569,-0.0490423478,0.169715226,-0.4690696,-0.749023438,-0.0239658114,-0.356462151,-0.144502401,-0.384488255,0.0798754916,0.106482327,0.170915022,-0.060423933,-0.482229769,-0.509765625,-0.379106581,0.0398884863,0.099578388,0.393785983,-0.0103769144,-0.0964007899,0.133772299,-0.295823306,-0.182048261,0.493507177,-0.219168782,0.0893812254,-0.023903342,0.0875686109,0.700683594,0.395526707,-0.423828125,0.281467021,0.0611480065,-0.810546875,-0.385661334,0.173292145,-0.0188021567,0.184058353,0.0182453506,0.31728515,0.342713654,-0.0411112048,-0.0512735583,-0.0983388573,0.544444442,-0.113251314,-0.244665578,0.0351188555,-0.0729980469,0.0893577114,0.0200713426,0.0756977648,0.0601479895,0.07013008,-0.260719985,-0.444456995,0.102950208,-0.46058768,-0.081278719,-0.382917494,0.0266762152,0.0531165712,0.144062161,-0.191981122,0.125114352,-0.0601619706,-0.498560846,0.0118233133,0.480895996,0.106463596,0.766927063,0.95703125,0.139604822,-0.02811886,0.385892421,0.111830726,0.219687507,-0.216844574,-0.131850317,0.213346183,0.0915370286,0.379944384,0.0479509234,0.0854649022,-0.482134044,-0.216745257,-0.208914414,0.216229275,0.760742188,0.152741611,-0.074760057,-0.0446638651,0.407432169,-0.178201705,0.19865723,-0.35546875,-0.254814386,-0.112289719,0.262670755,-0.0203769468,0.705729187,-0.083761774,0.0345874093,-0.0788479969,0.0742043406,-0.219091937,-0.341777533,0.492596298,0.336835742,0.0270368941,0.181615427,0.104775049,0.0766924247,-0.21032767,-0.460227281,0.757378459,0.614182711,-0.147428796,0.0322983935,-0.101826549,0.182193026,-0.541053951,0.0873793438,-0.166034147,0.701660156,-0.140168339,0.131855682,-0.428438783,-0.0149788521,-0.0820265189,0.160078868,-0.171887919,0.143014833,-0.327238172,-0.31729579,0.27634269,0.93359375,0.167492747,0.477288663,0.77734375,0.168972611,-0.424029171,-0.215367764,-0.0211127084,-0.187471583,-0.489224136,0.136200696,-0.17619434,0.115196273,-0.0620682389,-0.000215747568,0.441503912,-0.25390625,-0.204985902,0.407398373,0.0033122201,-0.00105948048,0.891276062,0.0652130395,-0.180240795,-0.0842170641,-0.43159771,-0.0788358375,0.0209467132,-0.232866645,0.0596248545,-0.623914957,-0.494306862,-0.0813325047,0.0533140749,-0.490309507,0.147054031,0.0918636024,0.24931851,0.133310363},{-0.486592948,-0.329796433,0.175830469,0.612847209,-0.491122156,-0.570551634,0.659254789,-0.200178146,0.366157949,-0.346886009,0.114046097,-0.411088914,0.100803666,0.591998935,0.134702086,0.765625,0.404171884,0.00346121285,-0.176742241,-0.4120197,-0.368171751,0.216355339,-0.104800202,0.127462074,-0.193394721,-0.143531859,0.332090437,0.344761312,-0.0788741633,0.130324438,-0.095699273,-0.329062939,0.459761411,0.130754679,0.182570845,0.375976562,-0.125953615,0.428497881,-0.513169646,-0.231413037,0.0776386112,-0.237756446,0.201143637,0.178669766,-0.156209022,-0.0154432729,-0.0835080221,0.0725475401,-0.137724712,-0.0649453253,0.228226453,-0.252861559,-0.068837218,-0.346561491,0.105702125,-0.29488951,0.327928752,-0.0314449966,0.431640625,0.465549052,-0.311535388,0.226528034,-0.208960235,-0.102499917,0.188007221,-0.161090419,-0.132813886,0.788504481,-0.154329106,0.593955576,-0.546336234,-0.0159840677,0.591796875,0.0886390805,-0.449133486,-0.243622556,-0.589425206,-0.0688606799,0.252946138,0.363416314,0.207914799,0.30368641,0.139652461,-0.295918643,-0.245071992,-0.0050356607,-0.425679803,0.315402299,0.227507502,0.156696215,-0.109839544,-0.62109375,-0.117641814,-0.447529554,-0.107878707,-0.399533629,-0.0923002139,-0.708729625,-0.146939114,0.312568545,-0.00227462361,0.0961827561,0.0219454132,-0.505984068,-0.385820955,-0.682198644,0.782924116,0.11694441,-0.194413036,0.241615474,-0.0588456169,0.00418356853,0.0440846011,-0.562144876,-0.76953125,0.28515625,0.427852035,0.159721941,0.167951792,0.156805307,-0.167052731,-0.0384624079,-0.345453471,-0.141566113,0.252861559,-0.299785167,-0.493067473,0.0764421299,-0.12139757,0.00380896823,-0.311545998,0.344596803,0.747395813,-0.675347209,-0.000765927718,0.362315297,0.177174702,-0.509854376,0.262658566,-0.643415153,-0.0495597646,0.0162508432,0.0100814216,0.333905995,-0.425752938,0.221154705,0.152829871,0.266617268,-0.120072298,0.197791472,-0.33360073,-0.235814139,0.155708164,0.164013669,-0.353680491,0.709960938,-0.233876288,-0.5064677,-0.49822998,0.332062513,-0.41022858,0.0406020172,0.697916687,0.098136805,0.586669922,0.0502733774,0.317468345,-0.32718578,0.0592874661,0.166985169,-0.0152611388,0.499772131,-0.293923855,-0.256915331,-0.624822438,-0.231888771,0.0935002342,-0.425557226,-0.591859877,-0.249300539,-0.337890625,-0.118899673,0.805664062,-0.0332217366,-0.105201103,0.147462517,-0.0556946173,0.434760869,-0.220756158,-0.300698131,-0.0864202529,0.356531471,0.331722856,-0.0552923754,-0.124137767,0.131834596,-0.082038559,0.458453894,-0.00346311228,-0.501904309,0.0460662507,0.0106623191,-0.0437083542,-0.0487407446,0.256966591,0.247220859,0.0659000576,-0.0859464183,0.018558098,-0.309560925,-0.106176883,0.208423108,0.144074142,0.25390625,0.0338108987,0.299766511,0.36324507,0.59375,0.0326876789,-0.589574337,0.170360759,-0.468399435,0.121826559,0.449443251,-0.101847105,0.0942611322,0.0754858106,-0.254858077,0.0350875705,-0.040966358,0.410739928,-0.513257563,0.0553771108,0.103018001,-0.655412972,-0.605543852,-0.237147048,-0.249293685,-0.242180899,0.570898414,-0.191323891,-0.563858688,0.228992611,-0.452964902,0.568847656,-0.217242077,0.266430676,-0.00643271953,-0.137231931,0.344346225,-0.311523438,-0.708470404,0.21184729,-0.198316351,0.154322788,0.291961342,-0.336893588,-0.258807689,-0.0297739506,-0.596047819,-0.114169464,0.0477923006,-0.191862583,-0.0888998285,0.276442885,-0.0835457668,-0.356573552,0.167379856,0.120596491,0.179205835,0.443611383,0.317418784,0.288118333,0.943359375,0.428797305,0.306521922,0.365315765,-0.487680286,-0.572332978,-0.125707775,-0.547770202,0.181615472,-0.485156238,0.96875,0.11814601,-0.0939704105,0.0769486576,-0.665798604,0.127899528,0.134709448,-0.141549096,0.54296875,-0.0225192737,0.249258593,0.359056115,0.617885053,0.272363633,0.161560223,0.2578125,0.0386925414},{-0.32243696,-0.2967901,0.2745436,0.28807572,0.29896665,-0.59484863,-0.12576455,-0.07298242,0.18655223,0.21921311,-0.32693666,-0.07083208,0.12484997,-0.35256645,-0.7465278,-0.00506082,0.17380834,-0.03603303,-0.04284777,-0.14938754,0.08471645,0.2492633,-0.36731663,0.12237217,-0.17081368,-0.4131647,-0.79470485,0.48742187,0.71158856,-0.10223344,-0.16016132,0.40043402,0.40618765,0.00556466,0.24330747,-0.35061118,0.37600407,0.15764344,0.06263637,-0.07597169,-0.01282866,0.0680818,0.10770767,0.21821903,-0.22317725,0.11446889,-0.15137926,0.11845303,0.14994101,-0.25681236,-0.24166006,0.8515625,0.26853523,-0.5994318,-0.42101935,-0.32428688,-0.27821088,0.09377331,-0.40035725,-0.08076687,0.21331537,0.44896874,-0.29501897,0.57510656,0.11311281,-0.5101351,-0.8546875,0.06593989,0.19134034,-0.25298393,0.12488423,0.18257885,-0.6124589,-0.5096663,-0.26757812,-0.41797647,-0.10347716,-0.05130052,0.00409368,0.61497396,-0.05173704,-0.00471027,0.35927355,-0.3173031,0.02044621,0.59375,-0.45413643,-0.01989858,0.17477795,0.2959176,-0.25878215,-0.55078125,0.17096537,0.24025722,0.4197606,-0.8691406,-0.03070087,-0.14454708,-0.31424165,-0.3934395,-0.0075474,-0.52542746,0.6588542,-0.598107,-0.20696968,-0.12742062,-0.1091058,0.3584382,-0.05616518,-0.19137906,-0.8886719,-0.06031572,0.09399441,-0.33191803,0.2275015,0.05381856,-0.15568583,-0.17574666,-0.22666122,0.02166156,-0.172858,0.03379054,-0.6266572,0.04218676,-0.14548028,-0.22518778,-0.45325917,0.38071987,-0.32233933,0.18064304,-0.4726363,-0.28515625,0.09841756,0.2210962,-0.11595823,0.41983193,-0.12036481,0.74609375,0.43149322,-0.06611542,0.10696036,-0.28607807,-0.01830819,-0.03362926,0.5631893,0.03478719,0.02138378,-0.08318592,0.05430993,0.40526006,0.48341444,0.00309408,0.24719909,0.02915994,0.3105705,-0.43545002,0.07224789,0.70013785,-0.29591444,0.3640587,-0.04234579,0.10599612,0.03767904,0.3613628,0.21145189,-0.49297738,0.20705074,-0.19779384,-0.01775859,-0.04751888,0.06613372,-0.00400692,-0.64570314,0.39718693,-0.03206563,-0.33895957,0.23730725,-0.08499129,0.12159501,-0.1337192,0.19915642,0.5516633,-0.07107479,-0.14354385,-0.08717822,0.53125,-0.04539187,-0.32507324,-0.12486476,-0.09469192,-0.41201234,0.19039907,-0.0035268,-0.2587382,-0.28217745,0.19630843,0.05761942,-0.6015625,0.3408502,0.73535156,0.3339462,0.49863592,-0.31542596,-0.16556281,0.20409551,-0.29590797,-0.2496964,0.12508395,0.06974262,-0.3849455,0.04130533,-0.12416168,0.03258784,0.31148097,-0.03906561,-0.2996904,-0.67838544,-0.5689453,-0.39447773,0.1870105,0.411805,0.12530342,0.0363625,-0.13715708,-0.08345996,-0.27147058,0.10841909,-0.26846948,-0.09986196,-0.12575209,-0.47113717,0.19297616,-0.1601335,-0.10422865,-0.51520646,0.09156418,0.5190928,0.01808367,0.15093227,0.19825417,-0.12160273,-0.44521886,0.04737266,-0.03720297,0.48304835,-0.17282037,0.06290862,-0.17874098,-0.81380206,0.43575916,0.25195312,-0.4562942,0.13231501,-0.40048078,-0.1962836,0.03377151,0.50022054,-0.08614309,-0.40042794,-0.14304405,0.37790892,0.30365697,0.03780892,0.3571412,0.49507812,0.02055202,-0.02125674,-0.49435765,-0.85091144,-0.30764958,0.01101112,0.5137416,0.25484097,0.05921069,0.3507183,0.5830078,-0.13569207,-0.08008511,0.41066575,0.82128906,-0.21489738,0.1396771,0.06393716,0.00637814,0.1455161,0.50485325,-0.4179505,-0.88671875,-0.11887822,0.19827935,-0.05112685,-0.43672347,-0.24654198,-0.02770533,-0.09227455,-0.09861539,-0.2939098,-0.39744216,-0.1518536,0.24320179},{0.0470205955,-0.213836759,-0.460042328,0.168885216,0.120618232,-0.0216022246,0.0693269521,0.300616384,0.327170938,-0.108123645,-0.313405961,-0.333036542,-0.277302682,-0.0321841165,-0.183604628,0.470615923,0.189007267,0.587698042,-0.424508423,-0.0284944605,0.346710533,-0.375041842,-0.231423423,0.200222716,0.133745611,0.171903878,0.0610815585,0.209900454,0.513631999,-0.348625183,0.369229406,-0.170914099,-0.0802759826,-0.166459695,0.88671875,-0.274436891,-0.25974527,-0.238793939,0.147491962,0.0106901973,-0.0953966528,-0.513574243,0.451084852,0.0251376107,0.211400956,-0.680215359,-0.624644876,0.00108393596,0.100883231,-0.306711823,-0.309490025,0.160159886,0.547160804,0.087382786,0.0842156634,0.0127063636,-0.21196112,0.0696117803,-0.109834649,-0.617476881,0.314560443,-0.392445713,0.226964846,-0.56640625,-0.639892578,0.254780024,-0.0245005041,0.181734607,0.320216656,0.114041343,-0.161107957,-0.0307240542,0.221578985,-0.636230469,-0.22266084,-0.0746591464,-0.196726486,-0.637019217,-0.172374889,0.264627814,0.103692956,-0.595336914,0.0315927081,-0.404327393,0.946614563,-0.0469487421,0.171358913,0.3974801,0.484350264,0.38289389,0.0603791699,0.217773438,-0.171870574,-0.032745529,-0.213876992,-0.758649528,0.138149202,0.53734374,0.410097063,-0.0320919454,-0.278338909,-0.182585761,-0.254945159,-0.0199431255,0.673063874,-0.09131594,-0.713867188,0.295871377,0.0651972443,-0.154254168,0.136160716,0.575721145,0.587962985,0.156266168,-0.569091797,-0.339972526,-0.215332031,0.234339744,0.505403638,0.496737123,-0.084018223,0.413983852,-0.198264465,0.444791675,0.267578125,-0.612583697,-0.346690655,0.414115757,-0.196831912,0.192376032,0.274483353,0.0747216865,0.219774783,-0.270470858,0.013727664,-0.688281238,-0.361185491,-0.16888988,-0.712713063,0.100327887,-0.190944225,-0.293994009,-0.239285871,-0.015775783,-0.131891549,-0.463402927,-0.053101588,0.108893029,-0.568359375,1.04273995e-05,-0.0256315861,-0.0124533335,-0.162099093,0.203524947,-0.125655442,0.646484375,0.0359199718,0.0690821037,0.611545146,0.486127794,-0.593610466,-0.499255955,-0.0068617994,-0.564104378,-0.00643123826,-0.0674049482,-0.217861772,-0.123875476,-0.0603934824,0.498535156,-0.164514884,0.0208411384,-0.0479367748,-0.34580189,0.040856462,0.105472445,-0.0646391362,-0.0523657948,-0.290046692,-0.166453078,-0.124192245,-0.0571598411,-0.410976559,0.627170146,0.0446438193,0.0118916621,-0.268539906,-0.87890625,0.130865052,0.216852337,0.550042212,0.00255719852,-0.440315187,-0.337890625,0.146956965,0.548900485,-0.0771375746,0.0798370168,-0.177237079,0.43683511,-0.7421875,-0.129872739,0.0981169268,0.247213751,-0.414864957,-0.387512207,-0.0103921685,-0.338822275,-0.332188398,0.156279445,-0.2578125,0.191903412,0.0586966276,0.654999971,-0.0335479937,0.23968932,0.391471922,0.809895813,0.439933896,-0.0212289561,-0.0837125033,0.445331097,-0.0255465768,0.144526735,0.0492883474,-0.0172180384,0.236786559,-0.190813601,0.129874095,0.161620244,-0.0908365622,0.206966296,-0.121348843,0.0411347002,0.37907967,-0.0790951774,-0.223734602,-1.0234375,0.164078176,0.0598221123,0.519209862,-0.148435742,-0.0153871924,-0.0231134463,0.267578125,-0.500395894,-0.70703125,0.640757442,-0.315358222,-0.624240458,0.109622858,0.0332917348,0.0883887932,0.192910492,0.421998173,-0.239211887,0.469473392,0.0451805964,0.555555582,-0.286149651,0.0619561262,-0.5390625,-0.0849899352,-0.408253193,-0.104697943,-0.151308879,-0.149404913,0.229980469,0.300720602,0.501627624,-0.0708240792,0.859375,0.604779422,-0.130807355,0.011579874,0.250003427,-0.863932312,0.400141299,-0.525390625,0.0913148746,-0.198272929,0.034044493,-0.296913534,0.517410696,0.0517280698,-0.443246961,-0.0399454795,-0.353156418,0.0979232639,-0.0837653354,-0.323242188,-0.256905705,-0.0783500895,0.605978251,0.113526694,-0.274406046,0.234797373,-0.170789719,0.0353760086,0.149889916},{-0.0883616731,0.431598157,-0.133758187,0.216721252,0.0405276455,0.0237651281,0.334936202,0.0274528563,0.126035705,-0.00483384635,-0.0595942922,0.146080136,0.387249231,-0.337785631,0.183535546,0.000518472865,-0.0221371241,-0.171953127,-0.311530083,-0.372033238,-0.0966587588,-0.505688071,0.22163713,-0.0520108901,-0.039793171,0.302613378,-0.131353945,0.362401456,0.0372014493,0.0773985013,-0.270557761,-0.0283890143,-0.163063109,-0.188496634,0.227620974,-0.26452288,0.270488977,-0.635546863,-0.701171875,0.248320937,-0.215755209,0.234934449,0.680121541,0.124164388,0.12992923,-0.740478516,-0.366093755,-0.0988437608,-0.125562012,-0.163195357,0.00592285302,-0.153821737,-0.023441622,0.114006869,0.254905671,-0.89453125,-0.136747107,0.265639246,-0.547776461,-0.439232618,-0.260739565,-0.1435754,-0.122292191,-0.377982199,-0.116469055,-0.313590497,0.356164694,-0.562812507,0.396528751,-0.444661468,-0.122082829,-0.20317319,0.460040122,-0.303688645,0.130003959,-0.295900762,-0.0354907885,0.299804688,0.390433162,0.385614812,-0.446264654,0.124887146,0.347427696,-0.132844493,-0.0499603376,0.0798296928,0.0927963555,0.120337687,0.235906869,0.515190959,-0.745312512,-0.287077993,-0.0930260718,0.153302938,0.101307847,0.0901240334,0.247513801,0.0924655795,0.062454965,-0.703657687,0.367057294,-0.153351888,-0.533691406,0.254893214,-0.185099646,-0.278148353,0.0273981187,-0.0123763271,0.264615804,-0.50086242,-0.167009458,-0.0644787028,0.435401708,0.121023297,0.0488218144,0.542829216,-0.11963217,0.0152828703,0.174795538,-0.250513613,0.0401393846,-0.0165303051,-0.0423342586,0.0332059972,-0.611430943,0.219190598,-0.169447482,0.0696032494,0.266536444,0.162123919,-0.319364011,-0.106500566,-0.674422562,-0.141614586,-0.34769693,-0.109898731,0.227140278,-0.141565591,0.330233812,-0.0800547823,0.330001146,-0.31935221,-0.458810329,0.178219527,-0.37680769,0.127932578,-0.227097332,-0.24250184,0.00789992325,0.089768976,-0.0922708362,-1.06640625,0.705078125,0.350577533,-0.185107425,0.0386140868,-0.143557578,-0.483452082,-0.0551652946,0.163969308,-0.061251957,0.0849471465,0.14163202,0.172293529,0.0259217508,0.196840197,0.0871838629,0.053862378,-0.142139196,-0.148877069,-0.0837426037,-0.729166687,-0.169943407,0.0609870367,-0.101870298,-0.274488598,-0.430797219,-0.0470400415,-0.692968726,-0.0291464776,-0.263637155,-0.0373008437,0.476396978,-0.265625,0.109102264,0.256852597,0.00429176958,-0.221044824,0.451856464,0.0746874288,-0.541078627,0.170946077,0.290945143,-0.13279146,0.49781251,0.416880757,-0.217264682,-0.32814762,-0.183645025,-0.226016209,0.0401266553,-0.330154717,0.0883427337,-0.452302635,-0.00569852674,0.665364563,-0.303730339,0.0820558742,-0.143539041,-0.00429351442,0.123660542,0.075654,-0.278360575,0.0983845741,0.122364618,-0.193754256,0.0910895988,0.165561885,-0.311631948,0.37209636,0.0125298323,0.10983064,0.475838304,-0.161608309,-0.0523462817,0.201112092,-0.0202238839,0.0396574922,0.783691406,-0.104017802,-0.377818704,0.498761445,-0.132778823,0.264602453,-0.0120594939,-0.0190006904,-0.645450354,0.207981005,0.0912911966,0.352649629,0.0127071515,0.328049868,-0.0863726884,-0.204537064,-0.210464165,-0.179704547,-0.323253036,0.466785103,-0.0903364047,-0.230517671,0.0574783869,-0.125486001,-0.114782713,-0.517427862,-0.602864563,-0.480454594,-0.491045117,0.131833345,-0.429421872,0.552951396,0.296006948,0.185067877,0.619270861,0.735677063,0.00799179543,0.260746688,0.122566678,0.096684441,0.4365412,-0.258718461,0.0300491285,0.457122624,0.440156251,-0.642045438,-0.0234517902,-0.422851562,0.222701192,0.250495046,-0.294006586,0.11746525,0.0613454022,0.12694563,-0.0734559,0.25486052,0.541173995,0.284040183,0.0444539636,0.264638364,-0.0509922765,0.278213531,-0.43357566,0.91796875,-0.124428548,0.16705285,-0.293919623,-0.245596141,-0.167980984,-0.594784021,0.649531245,-0.0754591078},{0.466125488,0.260759026,-0.262660742,-0.0707327127,-0.0703143701,0.466471344,0.0484233275,-0.183623552,0.0460357852,0.121606633,0.0565925278,0.251904696,-0.189439654,0.196802452,0.0400210954,-0.0103066051,-0.53885138,0.0366374888,-0.197230831,0.00938668568,-0.21390982,0.497173101,-0.212374881,-0.212343752,-0.414082021,-0.11107152,-0.435516834,0.0443206243,-0.175250635,0.191808745,-0.334917217,-0.455123037,0.0559099913,-0.746874988,-0.260691851,-0.0883897692,0.0849687979,0.146454573,-0.00228144391,-0.0213417858,0.360242128,-0.169916153,0.536956549,0.0885638744,-0.384802252,-0.0793617293,-0.0124592688,-0.249299675,-0.200241238,0.0182532128,-0.199247122,0.058559943,0.0324814171,0.169955447,0.0150330663,0.141107425,0.134740368,-0.247082993,0.547309041,0.0304889847,0.83984375,-0.448902041,0.240648031,-0.13184014,-0.347617716,0.146023467,0.231411636,-0.642857134,0.35921225,-0.283110112,-0.114240296,0.227017239,0.0844799131,-0.00225312635,-0.202182829,-0.395534456,0.671549499,0.204591528,0.203182608,0.177667096,0.0250929072,0.165048584,-0.380728185,0.058800254,0.251953125,0.101559713,-0.247019589,0.387663811,-0.0717842877,0.900390625,0.1553289,0.113721274,-0.437751114,0.116450176,0.552978516,0.205113009,-0.518359363,-0.338897049,-0.00144641078,-0.000921058003,0.16408889,-0.0917486474,-0.152337447,0.0842201188,0.60546875,-0.249259248,0.0680763796,-0.377682298,-0.519990802,-0.375075132,-0.152810901,-0.178707644,0.109839626,-0.0424975753,0.233865723,-0.12793164,0.0238397215,0.151829645,0.206500441,0.270520598,0.113234043,0.203669056,-0.0105148582,-0.124176852,-0.0571517088,0.518164039,-0.79296875,0.838068187,-0.0267913453,-0.126938611,0.529146612,-0.363164485,0.173245072,-0.555304289,-0.668836832,0.331059098,-0.0463361554,0.202773541,0.0159463659,-0.159031466,-0.250320524,0.145567223,-0.473291427,0.0942785293,-0.217374697,-0.21330063,0.0688352287,0.360218614,0.540296078,-0.54999125,0.458007812,-0.632763028,-0.0268490054,-0.248329163,-0.148383155,-0.0587332919,-0.666625977,-0.0910796225,-0.221249074,0.224689096,-0.0776339769,0.111110695,0.0459201261,-0.461959481,-0.28427875,0.0800209567,-0.0259791296,-0.603655159,-0.259765625,-0.0363643207,-0.191910997,0.334847003,-0.0927838087,-0.451005131,0.0836687237,0.122524872,-0.14117305,0.330133915,-0.254754931,-0.00350829936,-1.2421875,0.767578125,0.262559801,-0.243666038,0.295898438,0.3037512,0.6328125,0.509724081,0.382691264,-0.036622446,-0.525339246,0.410229951,0.124854513,-0.386632591,-0.132849887,-0.0659103394,-0.18747054,-0.0793300495,0.828125,-0.0345739052,-0.494703382,0.0925848559,-0.8359375,0.113046914,0.221173316,-0.179195508,0.184529722,-0.887695312,0.455053091,0.25055185,-0.865722656,-0.11156749,-0.141580805,0.474923283,-0.62109375,-0.260622114,0.0225356724,-0.034682814,-0.0400322825,0.00712141348,-0.26171875,0.0457501672,0.152283967,-0.588281274,0.450474322,-0.142071992,-0.101555571,-0.117654495,0.010200873,0.0476811193,-0.310279787,0.0710835084,0.390493333,-0.173860207,0.429972619,-0.0261475444,0.180147335,-0.554622412,-0.147063687,0.376868218,0.232426003,-0.183057591,0.100355163,-0.176745757,0.0230549797,0.469501197,0.330237925,-0.142038688,-0.110858008,-0.311490059,-0.0734811202,-0.224108785,0.200214207,0.0266558677,-0.105170235,-0.0722637698,0.175324708,-0.188391089,0.141603529,0.226923749,0.126975402,0.290047139,-0.151451856,0.183172405,0.0205100179,0.484914422,-0.159169823,-0.157266021,-0.924218774,0.16599603,-0.0609500185,0.671508789,0.0901201069,0.449374318,0.554445505,-0.0374480672,0.119648889,0.0983720347,-0.121112853,-0.252087831,-0.0864095464,-0.262639195,0.460901976,-0.355455995,0.211948052,-0.0437342562,0.659623563,0.213828534,0.557391822,0.374106348,-0.0744358301,0.0169636197,-0.189410895,-0.0766496435,-0.309565812,-0.135722056,0.173363954,-0.0292605404,-0.229511499,-0.292888492},{0.433577597,-0.0918448865,-0.114253469,-0.109803297,-0.0497126095,-0.295841545,0.225043401,-0.105455533,-0.346639991,0.708767354,-0.0421343446,0.0152187767,-0.317388445,0.0700599998,-0.453009129,0.319226086,-0.347841173,0.0981368944,0.350638717,-0.362323642,-0.46097818,-0.137753382,0.0447973013,0.63671875,-0.177775636,-0.160133034,0.0315522961,-0.196308911,-0.142579928,-0.122324906,0.0590882748,-0.184476271,0.00441395165,-0.218179598,0.0339345559,0.0245410595,-0.169481263,0.25486505,-0.733072937,0.479574561,0.316351414,-0.459233701,-0.34666732,0.111567192,0.232335478,0.181722388,0.30078125,-0.00391910877,-0.0594472624,-0.180671573,-0.115742005,0.0320641249,-0.36234808,-0.0249380711,-0.178713575,0.463885963,0.339981467,-0.140655518,0.0219093692,-0.229484752,0.330915183,-0.21677193,0.131818175,0.472516745,-0.0825123116,-0.00160624308,-0.344674379,0.363288939,0.9140625,0.172340795,-0.698153436,-0.184582368,-0.22458747,-0.792367816,-1.2109375,-0.92578125,-0.00395212555,-0.256860852,0.181252867,-0.353330195,-0.492340088,-0.628320336,0.559512854,0.014044621,-0.203586474,-0.269580066,-0.414113224,-0.352539062,0.368076414,-0.345524102,0.334010065,-0.441223949,-0.389546394,-0.212407142,-0.167983383,0.125493884,-0.2772744,-1.265625,-0.133238301,-0.350603431,-0.105194323,-0.027757287,0.127422199,0.0652180314,0.152323827,-0.86328125,0.157666847,0.252814472,-0.436304808,-0.198244408,0.685763896,-0.633463562,0.205072522,0.163102284,0.24929449,0.254933387,-0.483723968,-0.101052903,-0.594726562,-0.0991588309,0.391434819,0.005180954,-0.23925516,0.146464601,0.315353453,0.144478768,0.408151716,-0.693359375,-0.486015618,0.336894542,-0.0530338176,0.558443487,-0.278301299,-0.455833346,0.0905291289,-0.15575932,0.014305451,0.648193359,0.0797995552,0.260777771,-0.471131861,-0.352410823,-0.190496609,0.198253065,0.0198524222,-0.264625192,-0.2890625,-0.35374099,0.2684955,0.481835932,0.683789074,-0.0467808656,0.0450586602,0.904947937,0.181218266,-0.0954569727,-0.0266329963,-0.172872648,0.0717516094,-0.00915050972,0.322224945,1.171875,0.204040006,-0.240262821,-0.0459219031,-0.370046437,-0.253015339,-0.419168532,0.132282078,-0.234409019,0.547230124,0.230874598,0.317443311,0.305641085,-0.156208739,0.268598586,0.0342542492,-0.448348224,-0.437438965,0.136812121,-0.118643172,0.211961806,0.0759179443,-0.857421875,0.558794081,-0.87890625,-0.0172042064,-0.0449504778,-0.78515625,0.298632473,-0.00922552124,0.205586284,-1.0625,0.413281262,0.127893373,0.12442781,-0.679427087,0.133785173,-0.0500649139,0.0213784743,-0.231471285,0.403470546,-0.291015625,-0.331184566,0.380843878,-0.230908394,-0.367974818,0.021101268,-1.07421875,-0.649522543,-0.354488045,-0.129860848,0.719726562,0.505830228,0.233856201,-0.674386144,-0.149880007,0.135747954,0.0922851562,0.137717262,-0.0176445656,0.684303999,-0.145624354,-0.0744207948,0.186551645,-0.0751864091,0.190425292,0.245141804,-0.191794559,0.54623723,-0.413960606,-0.492912054,0.242810473,-0.134772316,0.305628687,-0.631911039,0.632634938,0.0712980777,-0.0427509844,0.104453996,0.164037675,0.0109821288,-0.0976551771,-0.336869001,-0.00782437157,-0.677556813,-0.603385389,0.00701398402,-0.0306009464,-0.04958703,0.0400520787,0.654146612,-0.312566429,0.232864931,-0.12441773,-0.190416723,-0.36723727,0.0839958787,-0.105259173,-0.0133654894,-0.546195626,-0.256800145,-0.166955382,-0.704427063,0.12200854,0.598011374,-0.0158924293,0.179564819,-0.128898457,-0.0895562842,-0.149888754,-0.135771096,0.425091922,-0.0703404024,0.359369457,-0.492071241,0.0305697359,-0.0343075469,-0.0377295651,0.90625,0.0868891478,0.392800063,0.163529575,-0.661132812,0.0949598923,-0.287109375,0.00107906351,-0.47285971,0.530691981,0.140693203,-0.220682845,-0.192413241,-0.0827783272,-0.071524933,-0.225061223,-0.0734564587,0.677408874,-0.105227657,0.00458304165,-0.247111246},{-0.126427799,-0.0391471498,-0.053974092,-0.227205887,0.052421499,-0.361372024,-0.565755188,0.7421875,0.165106177,0.130371958,0.748263896,-0.206031218,-0.145002916,-0.0868614614,0.501427293,0.134764418,0.323226362,0.0505135469,-0.0191896725,-0.451343745,0.919921875,-0.281372458,0.288088799,-0.113800555,-0.264642298,-0.0047694752,-0.309623361,0.135738403,-0.246179923,0.289008558,0.611816406,-0.20854412,0.19285813,-0.257870525,0.490792423,-0.206004962,0.16892378,0.0548508726,-0.101129152,0.0355419666,0.218776673,-0.0642338395,0.0020580336,0.317431033,0.142647609,0.0814676583,-0.429893941,0.112008147,0.280237257,-0.0503930412,0.0185756497,-0.51786536,0.278315693,-0.132834196,-0.122993097,0.0874285102,-0.195257694,0.678710938,-0.186019555,-0.0570230186,-0.485039055,-0.291029274,-0.282205343,-0.236958593,-0.0766390935,-0.0629455373,-0.0154708326,0.429671347,-0.196263224,-0.0406838916,0.012828161,-0.000407459185,-0.205553114,-0.139671192,0.042000968,-0.385767877,0.109350078,0.0812979266,0.173348591,0.135678798,-0.361216515,-0.292991042,-0.244127885,-0.173822433,-0.124845363,-0.181161121,0.35736084,0.212907016,0.0754557326,-0.322387695,0.505620241,0.132349595,0.00496635539,0.0243688282,-0.28806141,0.189465225,0.364168018,-0.818536937,-0.0358757079,0.0727418587,-0.155302867,0.213405862,-0.229023889,0.0361340605,0.00938457064,-0.402243942,0.330938429,0.372070312,-0.325138688,-0.64958638,-0.0666194707,-0.278215677,0.0723032802,-0.243253827,0.342741162,-0.1957421,-0.00406077597,-0.0937215164,-0.1328125,-0.120847195,-0.0949120522,0.338911861,-0.0793210641,0.0118374173,-0.0402468629,0.600585938,-0.309647471,0.057868056,-0.176269531,-0.181152344,-0.19622618,0.131844878,-0.616908491,-0.0308278725,-0.236807287,0.572451651,0.152337328,-0.195809469,0.30067873,0.208954617,0.342812896,-0.0276787002,-0.227973312,0.421778709,-0.670898438,-0.0120827081,-0.429796875,0.0593154393,-0.352568656,-0.178725123,0.494179159,-0.90625,-0.246073335,-0.0703005269,-0.0521123894,-0.147452354,0.0798336342,0.8203125,-0.635080636,-0.0691093653,0.629340291,-0.141156539,-0.0952556431,-0.0121462457,-0.00182472169,-0.592023969,0.605794251,-0.674386144,-0.0312876813,0.372815311,0.00394371338,0.180698842,0.790364563,-0.192407712,-0.0964211822,0.646158874,0.296875,-0.098635748,-0.423719615,0.169979692,-0.309611738,-0.127944708,0.0548869558,0.117196262,-0.442494869,-0.0481006913,0.256789029,0.128394976,-0.157177851,-0.224045813,0.335948229,-0.722265601,0.00245656935,0.340727657,0.431640625,-0.0747015923,-0.254855543,-0.166029006,-0.0624265186,0.133780047,-0.373791993,0.0786016285,0.00340893841,-0.321328133,0.141595766,-0.173824608,0.170402586,0.608506918,-0.278352648,-0.705468774,-0.134682447,0.51171875,0.038074743,-0.499674469,-0.191809878,-0.545636415,-0.312546968,0.0797951818,-0.0776433498,-0.0165421367,-0.0654350966,-0.102070041,-0.248328388,-0.198285833,-0.477491021,-0.18637079,0.0365663134,0.254764438,0.228537679,-0.08250653,-0.256763905,0.00283715781,-0.565848231,-0.12793684,0.340815693,-0.00871774368,-0.302713156,-0.521574497,0.226547539,-0.00380084943,0.835336566,0.103744164,0.125728175,0.0380813032,-0.427812487,-0.608984351,0.341851115,0.352553219,0.210410774,0.482389867,-0.434776634,0.0126893297,0.0295501258,0.200193599,0.437988281,-0.296875,0.321244001,0.0506432243,0.119384348,-0.239683628,0.288049757,0.039796602,-0.415900737,-0.0413791575,-0.0810626298,-0.0647046939,-0.344693869,0.619140625,0.0085706329,-0.317406625,-0.0984154046,0.445367366,-0.739955366,0.134275138,-0.0338323377,-0.00584182143,0.606249988,0.221253648,-0.655560672,-0.357602715,-0.500976562,-0.157337159,-0.460164398,0.710503459,-0.113328166,-0.0600803234,-0.209935158,-0.430732846,-0.065952085,0.117929503,-0.116004892,-0.0188317113,0.466885656,-0.185018197,-0.268544406,0.558749974,0.139642596,-0.305611134,0.18941921,0.25290367},{-0.164977014,0.56640625,0.117429845,0.0394179113,0.423624068,-0.871874988,-0.0444306657,-0.0258277077,-0.217265785,0.679166675,-0.152338475,-0.58618474,-0.111993648,0.0788881853,0.340653151,0.0462885983,0.28515625,0.143563822,-0.067145735,-0.462756574,0.264633328,-0.112022541,0.244672507,0.0550357662,0.107867874,-0.307481289,-0.104967155,0.018544836,0.197763979,-0.159184471,-0.577088654,-0.260710001,0.419850409,0.439640135,0.0776254833,0.345753193,0.57421875,0.0454138443,-0.127894998,-0.0601544827,-0.0077654277,-0.218167454,0.136228666,0.27833569,-0.014417314,-0.0573577881,0.0632343292,-0.160185978,0.662997186,-0.125807986,-0.169955313,0.14943172,0.216737628,0.515534163,0.613692462,-0.71484375,-0.153771609,-0.0227125231,-0.266552508,0.0598284677,0.500083089,-0.244119734,-0.45108965,0.0761476308,0.0647062063,0.544170678,-0.214435428,0.109651528,0.289212137,0.216824979,0.146456644,0.414191276,-0.0492720157,-0.125739664,-0.283203125,-0.49306187,0.0559112504,0.73046875,-0.217248812,0.125754014,-0.464331448,-0.0808345303,-0.264537811,-0.0216906369,0.45882383,0.000271970988,0.0854243934,-0.0918103606,0.579900563,0.0450434908,0.377764165,-0.748372376,0.178715587,0.780691981,-0.122088067,-0.157224521,-0.393281251,-0.47672525,-0.179246902,-0.0269552246,-0.0121486066,0.486411244,0.417983651,0.16592662,0.11060524,-0.264626324,-0.0636120141,0.163055509,0.390340388,-0.0945083573,0.783203125,-0.231483087,-0.0106562562,0.0578856319,0.584077358,0.103000507,0.136688784,-0.840820312,0.5625,0.0481021293,-0.528851449,-0.486816406,-0.103677832,-0.297778547,0.560248911,0.194347993,-0.129405633,-0.0566078611,-0.392292291,-0.0113252103,-0.374075383,-0.137687087,0.606889188,0.0712943971,-0.222172424,0.0595685989,0.604492188,0.137226701,-0.360594153,0.28221181,0.387752771,-0.213855937,0.178212926,0.170900419,-0.23927106,-0.221273407,-0.601048529,0.0451435484,-0.198221236,-0.358437508,-0.181059033,-0.572225749,-0.583718061,-0.637152791,0.0336008742,0.449167341,0.358066767,-0.0169197097,-0.0686331913,-0.344799429,-0.0374723598,0.194333792,-0.57593751,0.446036518,-0.144106805,-0.33984375,-0.352478027,0.162145346,-0.612847209,0.00693167513,-0.719140649,-0.323308408,0.26649183,-0.0664343014,0.466684192,0.213369459,0.284144163,-0.488170683,-0.178704336,0.440655053,-0.0724964589,0.469904125,-0.357306987,-0.4209975,-0.284206361,0.396267354,0.7265625,-0.18359375,-0.365127563,-0.148798615,-0.00142996677,-0.194286987,-0.0580916367,-0.268549234,0.162112564,-0.231478274,0.357407182,0.776041687,0.218107447,-1.0546875,0.427539051,-0.285466969,-0.232376456,-0.124178119,-0.119159348,0.500627816,0.0101343766,0.131820813,0.12641415,-0.551897347,-0.100606844,-0.295819253,-0.0854169279,0.523483455,0.18258813,0.26857245,0.0626899749,-0.724218726,0.111546658,-0.0119035449,0.0971793979,0.231431276,-0.395261198,0.223602295,0.035745427,-0.542838514,-0.155231774,0.0883985385,0.267578125,-0.241707668,0.0883605704,0.000481835043,-0.073702924,-0.152715474,0.213371336,-0.0688564703,-0.1504215,-0.576078892,0.798502624,0.151355833,0.222630292,-0.154340148,0.9765625,-0.087613523,-0.322129577,0.154832765,0.442734361,0.247078717,-0.23771885,-0.282310456,0.280176252,0.176260501,0.147951394,0.697591126,-0.331054688,-0.331103206,-0.356505394,-0.59765625,0.418602198,0.0597948618,-0.266629785,0.133314535,0.238251284,0.0386780873,-0.176233754,0.0995780677,0.0186587013,-0.0168572497,0.252909541,0.71484375,0.92578125,0.0873930305,-0.0573740527,0.0900933444,0.601196289,-0.1737708,-0.200202212,0.0494077504,-0.284110487,0.231470123,-0.119401813,0.270554751,-0.103504941,0.21291782,0.421674222,-0.280255139,0.17432791,0.118606515,-0.227384716,-0.0563957691,-0.0632150248,-0.313630015,-0.470682561,0.0616384186,-0.845703125,0.311322033,0.533203125,-0.0467537493,0.183581129,-0.380494297},{-0.208510369,0.210973471,0.16403012,0.660964429,-0.32421875,-0.0274456143,-0.51932013,0.0165637098,-0.0829364657,0.3359375,0.0393424667,-0.493297219,-0.172830865,0.382799655,0.0340282023,-0.296966255,0.208609715,-0.0593539402,0.469827592,-0.0234971978,-0.135244697,0.183129936,0.351581156,0.574692249,-0.665670931,-0.404370934,-0.560864806,0.163096815,-0.0727304071,0.034400139,0.25284192,-0.0124810655,-0.509570301,-0.210956722,-0.0223962013,0.171828359,0.478276461,-0.148435399,0.21384415,-0.103270762,0.666666687,-0.160161793,0.384765625,-0.0803375542,0.000356555363,0.490004599,0.212358713,0.254914582,0.589752913,-0.00377913937,-0.0147450306,0.246549889,-0.447354406,-0.033808507,-0.27245146,-0.51964283,0.264688939,0.0522520356,0.661197901,-0.15770407,-0.375905097,0.299752593,-0.404430658,-0.0671772212,0.256946921,0.101765864,-0.607299805,-0.214296997,-0.138223365,-0.115682647,0.162118167,0.164494768,0.144540176,0.692382812,-0.91015625,0.0947435722,-0.440396011,-0.498656243,-0.76171875,0.0594651997,-0.13576673,-0.374842018,0.0600308515,-0.0131589491,-0.284194112,-0.460980892,0.0289430041,-0.230778947,0.0903668627,-0.122412205,0.103668511,-0.0249967854,0.0418495424,0.0151542062,-0.180244282,0.331146598,-0.00111594447,-0.17285502,0.0186661314,-0.404418945,0.409187257,-0.27336964,-0.131415904,0.436094701,-0.154309615,-0.9609375,0.265625,0.246027589,-0.149355322,-0.438362181,-0.360385627,-0.0879115388,-0.488795221,-0.320325106,0.284252018,-0.0428254567,0.201158315,-0.249660075,0.278289378,-0.0467483178,0.0908144712,0.296906203,0.0323828235,-0.0513715111,0.439346582,0.0542153418,0.160508096,0.101080596,0.270415425,-0.538445711,-0.183615059,-0.150412083,-0.0720030293,0.414010644,0.0204535089,-0.0219577979,-0.103738919,-0.175786033,0.21094206,0.576024175,0.485115826,0.0310437828,0.143094465,0.138693541,0.460263193,0.18160297,-0.625344694,-0.263507247,-0.125129625,0.271418631,0.384739012,-0.161150724,-0.0962040201,0.0626542196,0.694531262,0.13762556,0.0149067035,0.231874242,0.133686393,0.215693086,-0.30176276,0.669487834,-0.155763745,-0.615017354,-0.0179504603,-0.361189008,-0.138194442,0.0374972299,-0.0120774824,-0.247539058,0.0392584056,-0.183525056,0.0268727932,-0.166084528,0.133793205,-0.521647155,0.24465397,0.0380579047,-0.411985368,0.332017958,0.0940106735,0.356627375,-0.310642779,-0.126967728,-0.256812513,-0.169876367,0.175769046,-0.111738726,0.103481665,-0.314428091,0.248832583,-0.564615905,-0.366170257,0.196841374,-0.0756434873,0.426682681,0.179205433,0.35374099,-0.086428158,-0.27734375,0.0605348833,0.243618935,-0.605598986,0.189445809,-0.131326199,-0.776123047,-0.57421875,-0.357362181,0.0350244083,0.195832118,-0.179662034,-0.359363645,0.0170792509,-0.94921875,-0.463506699,-0.0173309129,0.117411062,0.457598299,0.561298072,-0.134670675,0.26072526,0.194810659,-0.623355269,-0.230056822,-1.1015625,-0.249199599,0.180706039,-0.586093724,0.171842366,0.415998042,-0.560588419,-0.184992805,-0.0627862066,-0.51192987,-0.698242188,0.511446238,-0.106440358,-0.00719308574,0.36710611,-0.209960938,0.109073944,-0.749644876,0.678385437,0.0991439745,0.207938313,-0.0959500745,-0.191382587,0.0622030161,-0.160157993,-0.17772834,-0.156755686,-0.813151062,0.235358492,0.338843018,0.490333676,0.0891408771,-0.315361053,-0.195333362,0.0303274505,-0.174804688,0.054399088,0.738769531,-0.28125,0.791666687,0.0651785582,0.249244615,-0.0712774172,-0.18359375,-0.116931453,-0.131862715,-0.990234375,0.245167553,0.110554785,-0.203532174,-0.0969299152,0.427938759,-0.2363213,0.484008789,-0.323215067,0.066478543,0.697916687,0.280258417,0.210935101,0.163489342,0.0854506344,0.162143916,0.53914386,0.256800562,-0.288098156,0.451111972,0.0649346039,-0.272503823,0.281060368,0.272404373,-0.165033206,0.159640402,0.29402113,0.599609375,-0.559836626,-0.34631899},{-0.0827390105,-0.805989563,0.225110397,0.533045948,-0.753417969,0.316311359,-0.00170145335,-0.237340286,0.385767877,-0.0662075803,0.0335982442,0.9375,0.0852447227,-0.127885029,0.161157593,0.140147254,-0.21233733,0.220661268,0.191888854,-0.336977065,-0.069088839,-0.0989386663,0.163115427,-0.0832223818,-0.121090367,-0.204603463,0.432421863,-0.332789898,-0.353706181,0.0851772279,0.0356495008,-0.269558072,0.0185580365,-0.293998092,0.0536035821,-0.180688217,-0.00552809844,0.0800569504,0.249257907,-0.134742603,0.235332653,0.171380401,-0.498046875,0.050916858,0.429639876,-0.40625,0.0267273467,0.190465301,0.0295327064,-0.156262711,-0.226056963,0.70703125,-0.287109375,-0.305622697,-0.201200143,-0.256719112,-0.268648773,-0.126987875,0.394333959,-0.463951379,-0.577845991,0.130352423,-0.0253440924,-0.287116528,-0.130816534,-0.83984375,-0.00829776004,-0.428879321,0.267662764,-0.0710209683,0.614843726,0.0493563786,-1.03125,0.112753026,-0.5859375,0.229444936,-0.042769257,0.47925967,0.237871915,0.333033919,-0.517896056,0.252965868,-0.0379558764,-0.647727251,0.284291744,-0.351201415,-0.173790306,-0.0841641501,0.268452197,0.0830470249,0.309235066,0.395327926,-0.297851562,-0.204611614,-0.195322543,-0.272437274,-0.252959281,-0.549082875,-0.103021212,-0.491282731,-0.14943634,0.532877624,0.490877181,0.39801392,0.286217213,0.0386806503,-0.0942080468,0.150399387,0.256769508,0.0198154487,-0.180135667,0.0361077562,0.28224954,0.103780903,-0.140128836,-0.138646513,-0.369124085,0.369303375,-0.0517356172,-0.54296875,0.106861889,0.380982131,-0.523259938,-0.255884111,0.243653432,-0.198668867,-0.153857842,0.206434458,0.0585796088,-0.0915162042,-0.338867188,0.398571044,0.364015311,-0.0121706231,0.141555056,0.640104175,0.561802447,-0.0290852506,0.127901614,0.221165791,-0.300574094,0.12089134,-0.509486616,0.163029775,0.180659771,0.0560053661,-0.382779688,-0.456818968,-0.207505867,0.16368632,-0.64453125,-0.211943597,0.164485887,0.280325711,-0.0652516261,0.214868367,0.150418982,0.132834449,-0.204132155,0.0539641902,0.513363481,0.635869563,0.00151955558,0.389568955,-0.168962568,0.0439728051,-0.0634789839,-0.2734375,0.0351813212,0.0536771752,0.364241809,-0.29698056,-0.0561746396,-0.509765625,0.26661095,-0.319331348,-0.0991593748,-0.46788612,-0.0939676762,0.461969852,-0.703377008,-0.0930234715,-0.384824812,-0.0122064818,0.0974331349,0.034774743,0.156714007,-0.0685778931,-0.151391909,-0.634765625,-0.212335795,-0.300770044,-0.229492188,-0.0744685978,-0.455915183,0.202650204,-0.0240083709,0.341721743,0.129859179,0.0285537299,-0.655436218,-0.0788875893,-0.238725141,0.0878489166,0.0966186523,0.0177713465,0.0219128262,-0.19045876,-0.232411534,-0.132849485,-0.255859375,-0.0869563371,-0.0191847067,-0.044656042,-0.0114814984,0.202621356,0.202190757,-0.136713669,0.072734423,-0.48046875,-0.207973495,0.310727715,0.610595703,0.322265625,-0.424746096,0.134752855,-0.138166025,0.164452747,0.119385138,0.205594167,0.0257035401,0.4246943,-0.383147746,0.564138114,0.20167774,-0.0488374308,0.560596943,-0.0125013366,0.424692869,0.0793726519,-0.02050432,0.109758407,0.237810358,-0.0739667863,0.0771706328,0.0791041404,-0.771033645,0.114007927,-0.442318767,0.129403219,-0.06323044,0.248817742,-0.709375024,0.664248526,0.549005687,0.390536219,-0.149395853,0.0325006805,0.268465012,0.164068341,-0.0128048649,0.149408802,0.08570759,0.101318359,0.0798332691,-0.755208313,-0.601384938,-0.143060043,0.14405866,-0.00102070312,-0.207109377,-0.00600102916,-0.242680341,0.609991789,0.0404133573,0.387339145,-0.920312524,0.0544537827,0.00754665583,-0.28892976,0.451538086,-0.278339267,0.278342247,-0.503693163,0.0453034304,-0.332895875,-0.0490752459,0.340831161,-0.0712897554,0.00393764907,0.503089488,-0.0442182533,-0.74609375,0.460316062,-0.0435857065,-0.629728615,-0.688281238,-0.441505909,-0.483439118,0.521530867},{0.260722607,-0.490975201,0.244621724,0.341796875,-0.270577729,0.0922698081,0.124840997,0.322332978,-0.0922550783,0.00368001033,0.554271936,-0.245148033,0.0672948435,0.41899839,0.192810893,-0.0842948258,-0.243688449,0.0629435703,-0.225537106,0.98046875,0.222717673,0.176699266,-0.511439741,0.0599210933,0.272379875,0.514914751,0.145089284,-0.0257256217,0.934895813,-0.372056007,0.0448044389,0.000123482736,0.135333568,0.365080446,0.0225620065,-0.636386275,-0.162597656,-0.0531277806,-0.0881246775,0.334867924,-0.046875,-0.192399502,0.23828125,-0.0866327509,-0.0329787955,-0.0302157216,-0.0456020944,-0.169984803,-0.189391941,-0.0321055278,0.300868452,0.507886231,0.0172259007,-0.413990706,-0.104950473,0.0920107961,0.102962613,0.291177154,-0.287009388,0.250286639,-0.314453125,0.334875286,-0.0803292245,0.0615463667,-0.0323962718,-0.0920688286,-0.576002061,-0.351532459,-0.00288022077,0.0537214838,-0.183060512,-0.713671863,-0.414037138,0.31649369,-0.814670146,0.385659814,-0.0746551678,0.666294634,0.0944330469,-0.535781264,0.4920201,0.0112016983,-0.233350128,0.1518085,-0.142553613,0.0551713184,0.284222692,0.577864587,-0.241161659,-0.0246667638,-0.34371841,0.294758052,0.402719349,0.284255981,0.0154088261,0.0424857512,0.268578649,-0.211024299,-0.616861999,-0.222675592,-0.186503306,-0.286117673,0.122561917,-0.212901816,0.25291115,-0.109413847,-0.153312489,-0.459774911,-0.276367188,-0.393580168,-0.681423604,0.459716797,-0.534288168,0.23773545,-0.12230359,0.264618337,0.48962602,-0.055153992,0.239262655,0.286077678,0.0455540232,0.0666310936,0.111297004,-0.0564447604,0.294026166,-0.0707488358,0.354130507,0.129914492,0.105444737,0.51389724,-0.395416826,0.031756334,0.0885739475,-0.212393716,0.19963634,-0.643415153,0.2734375,-0.188468292,0.00278635952,-0.0878883973,-0.115246706,-0.455126166,-0.437443376,0.00481024245,0.703559041,-0.744531274,-0.78515625,-0.228146285,0.1171875,0.00556623191,0.0424826853,0.469726562,-0.126379997,0.544360042,0.0837790594,0.0121238464,-0.22164996,0.0788589716,-0.131843567,-0.0810146332,-0.156223491,-0.369855195,0.896875024,-0.407158136,0.376953125,-0.0450532138,-0.6640625,0.0153200971,-0.287100047,-0.09597601,0.236445874,0.168047741,0.240706518,0.295945436,-0.278304517,0.0885987282,-0.260680377,0.19775629,0.195341036,0.0131592201,0.191913754,0.192981675,0.73046875,0.408278257,0.254781008,-0.235857934,-0.278345525,0.767089844,-0.453893453,0.166014031,0.116488546,0.243206993,0.119385317,0.0319178775,-0.299715906,0.859375,-0.24272503,0.089036867,-0.0768720135,-0.398461759,0.105707891,0.0827888474,-0.284139246,0.0749568492,0.0903295875,-0.329211086,-0.458344549,0.150914073,0.6796875,-0.362390846,0.00568098156,-0.216331035,-0.125063002,0.362299055,0.0940204337,-0.33772701,-0.210391492,-0.402119964,-0.0281366743,-0.21821627,-0.388600588,0.0908409134,-0.339730859,0.645898461,-0.0467406698,-0.481626153,0.628125012,-0.562399864,-0.0217193309,-0.646321595,0.218691871,-0.479383677,0.0673742741,0.304593235,-0.292019159,-0.460281134,-0.0652360246,0.0133126089,-0.346552312,-0.0893846825,0.792534709,-0.109900221,-0.311617941,0.283115685,0.0964654684,-0.441861987,-0.154296875,0.607484877,0.143542916,0.0113150598,-0.0924680606,0.0513202623,0.49330005,0.162145033,0.21672155,0.315475553,0.697753906,-0.0303986277,-0.759232938,0.2188375,0.477494001,0.0252697654,-0.199278802,-0.0528853238,0.0480040386,-0.176300704,-0.379921436,-0.0529252179,-0.564622939,0.273541987,-0.280243695,1.0859375,0.17473866,0.171409041,-0.179245353,-0.466603965,0.476895958,0.0886772573,-0.0879227221,-0.100419663,-0.272405922,-0.0284904055,-0.00195722561,-0.0915489048,-0.150355816,-0.239793733,-0.10275875,0.141648561,0.605113626,0.418856531,0.234845191,0.156784952,0.0111807697,-0.0191400088,0.713040888,-0.861979187,-0.258812249,-0.154270664,0.611934245,-0.0920663401},{0.20413439,0.05164773,-0.6708097,0.23829639,-0.03477412,0.37317392,0.8203125,0.40452665,0.08372816,0.08860543,-0.08421962,-0.16498886,0.16076021,-0.06165456,0.55078125,-0.18655859,-0.05718891,0.416925,-0.10666648,-0.12940462,-0.26160094,0.03525301,0.12059194,-0.36029494,-0.44811073,-0.15090172,-0.08204178,-0.24470149,-0.28029296,0.35624403,-0.20208275,0.35153311,-0.41988242,0.1753104,-0.01293945,-0.8027344,0.09327319,0.00500057,0.15330927,-0.339725,0.08349083,0.34977987,0.06644008,-0.05005914,-0.19828935,-0.3818724,0.14933825,-0.34976992,-0.53125,0.1904224,0.4753906,0.13625659,0.08958575,-0.27822793,0.43965992,0.49214458,0.14936756,-0.16992328,0.2567736,0.17140931,0.4315662,-0.6669922,-0.2607649,0.4112099,0.69591343,-0.22513291,-0.3369414,-0.2822102,-0.24169664,-0.08321893,0.3525188,0.02779143,0.04556588,0.74934894,-0.3895978,0.08794574,0.40427846,0.11646776,0.24510457,0.29784292,-0.24653101,-0.00914995,-0.52505714,-0.6920573,0.3281786,-0.08130392,0.26664102,0.20698303,-0.49810606,0.15034463,-0.05224774,-0.05990933,-0.21677963,-0.05186899,0.52283657,0.11941938,0.91796875,0.47621372,-0.45890412,-0.16603906,0.10743308,-0.24172436,0.3036202,-0.05588745,0.06686421,-0.19870694,-0.00590885,-0.20802161,0.19241732,0.28517252,0.19384766,-0.16407262,0.16695726,-0.37312272,0.05717169,0.23100707,-0.02449841,-0.50078917,0.15233609,-0.11522853,0.07519227,-0.3464081,-0.16508214,0.5818257,0.03924567,-0.4040404,0.46664664,0.26165095,0.05322007,-0.5877757,0.0012362,-0.10036542,-0.03954036,0.6266984,0.11309716,-0.36434823,-0.6703559,-0.13179737,-0.06258827,0.10644463,-0.5479911,0.31473756,-0.16604081,0.03932482,-0.7939453,0.4841694,-0.7046274,0.22697921,0.44861504,0.0681446,0.24965754,0.29487482,-0.70716596,-0.6857639,-0.48570964,-0.58884805,0.06609552,0.48664203,0.09027839,-0.1646024,0.00573814,-0.06018492,0.13230605,-0.17581323,0.2764146,-0.04991654,0.6611842,-0.02843105,0.2803463,0.2705357,-0.50390625,-0.07761958,-0.22165756,0.35552454,-0.48032585,0.16950251,0.3203125,-0.41505197,-0.28019655,-0.20114867,-0.08419435,-0.0521236,0.04688034,0.08150403,-0.12742218,-0.13572398,0.05900327,0.07835386,0.07742048,0.20658053,0.02250584,-0.24926758,-0.30574948,-0.6230469,-0.1494588,-0.44376817,0.08224669,-0.47370428,-0.16395153,0.47354168,-0.14200833,-0.13669282,-0.69084823,0.3088041,0.17864376,0.6976563,0.45483398,0.27436197,-0.44145063,-0.05898361,-0.195334,-0.00230426,0.17819318,-0.33997637,-0.37994543,0.22506031,0.37710783,0.42002803,-0.49135503,0.06473031,-0.2548828,-0.29674214,0.15917762,-0.19143665,-0.2085041,-0.16114886,0.8066406,-0.07741971,0.18701263,0.68541664,0.21141587,-0.19531797,-0.31621724,-0.01693594,0.08050662,-0.13764684,-0.20356514,0.48863003,0.03884254,0.1450122,0.39756826,-0.46895078,0.5216239,-0.04272405,-0.1812221,0.03321884,-0.29980877,-0.3026421,0.11084975,0.03100331,-0.03864103,-0.7447917,0.41412675,0.49817333,0.10003992,0.56612724,-0.3805643,-0.04207512,-0.34088543,-0.02508138,-0.22598667,0.02075538,-0.26658368,-0.1337747,0.16699456,-0.43307292,0.43625,0.07661921,-0.46099126,0.0664072,0.31235456,0.58803016,-0.02549972,-0.23147887,-0.24244587,-0.09127918,-0.37395832,0.1650133,-0.22560969,-0.11604991,-0.30855376,-0.6035156,-0.19276495,0.0440625,-0.45393482,0.25682402,0.6030134,0.27829558,0.380998,0.15915352,-0.41222894,0.39051473,-0.5935202,0.10842305,0.28019664,0.36118343,-0.11356952,-0.21775174,0.58,0.42955065},{-0.01325595,0.08764648,-0.22553454,0.09297291,-0.10085668,0.6362592,-0.11082916,0.18615532,0.07470489,0.20312329,-0.10303432,-0.12463251,-0.05776522,0.44630283,0.3162049,-0.04124941,0.3592362,0.74897206,-0.13230427,-0.03885227,-0.02111207,-0.23098163,-0.8359375,0.21779785,0.03488597,-0.24513748,-0.24419443,0.7233665,-0.26171875,0.21093406,-0.23828125,-0.00732182,-0.20466033,-0.20358828,0.21137595,0.62428975,-0.10476805,0.05996757,-0.07078595,-0.21430677,0.21294017,-0.28515625,0.1135702,0.3319402,0.27634078,-0.13381882,0.2362229,0.24166478,0.45515952,0.21970797,0.04720367,-0.0165424,-0.01747766,0.37702826,0.12886393,-0.42080632,-0.69166666,0.12636818,0.10153369,0.04079212,-0.15967469,0.21289709,0.00305828,-0.45520115,-0.16847603,-0.445281,-0.08151647,0.01833339,0.432206,-0.10907667,0.05431384,-0.15918633,-0.72786456,0.28033644,-0.430702,0.26964924,-0.3525183,-0.7619141,0.21775003,-0.00126188,0.06299346,-0.02739687,-0.01095364,0.00512455,-0.44819847,0.81640625,-0.3447176,0.68470985,-0.16652134,0.02271551,-0.15726033,0.04307487,-0.01065958,0.29782006,0.2724276,0.6875,0.14741203,0.13959247,0.7447917,0.19329311,0.67466515,0.4458912,0.19435106,0.36340225,0.06150061,0.20227481,-0.12991859,-0.01835475,-0.04994774,0.51905775,-0.4815813,0.3556108,0.610131,0.32920498,0.13864847,-0.55886626,-0.09255108,-0.18849,-0.16890408,-0.43025455,-0.25286192,-0.16362548,-0.02798256,0.5115525,-0.29785156,-0.15338178,-0.15870361,-0.26073134,0.2822685,-0.16208187,-0.57613033,-0.24675767,0.3204601,0.5056818,0.22269706,-0.14943613,0.23489963,0.35127637,-0.12888262,-0.46897978,-0.12216447,-0.08908035,-0.24655773,-0.08246785,-0.46273437,-0.4386872,0.14005044,0.4799277,-0.11474153,-0.06983484,-0.01162823,-1.15625,-0.33884877,-0.09981236,-0.19140872,-0.29980743,-0.18062055,-0.25688803,-0.04098346,-0.31161156,-0.12036721,0.02215666,-0.02497935,0.14848171,-0.40622878,-0.45096782,0.06518654,-0.39456064,-0.5566023,0.61671877,-0.1079208,-0.48780218,-0.14453638,-0.02281884,-0.5292969,-0.16307314,0.3760058,-0.47748244,0.09421462,0.4071551,-0.64854306,-0.17879435,-0.04405671,-0.20208792,-0.04248666,-0.4811508,-0.24397579,-0.0149979,0.2939893,0.42103997,-0.2822851,0.25095016,-0.3173781,0.07813188,-0.35558894,-0.03102677,0.02926171,0.36712876,-0.09644663,-0.19866097,-0.56063986,0.00544198,-0.1235496,-0.68385416,0.34869483,-0.04285238,-0.23930047,0.04016513,-0.53615195,-0.9921875,-0.29586306,-0.61464846,-0.08006638,-0.05771406,0.08743944,-0.06716537,0.12389708,-0.653125,-0.15523832,0.00234555,0.02320697,0.43085617,0.73772323,-0.24020737,0.7988281,0.4846693,-0.2162939,-0.20850216,0.25691152,0.28710938,0.3341221,-0.5777803,0.33597043,0.00177948,0.3670463,-0.29586643,0.15726762,-0.15039062,0.11670579,-0.22701202,0.2167876,0.33769706,0.27340713,-0.17970988,0.3681708,-0.27241066,-0.1034595,0.3955131,0.44115308,-0.1708964,0.39422664,-0.3595357,0.01771555,-0.1288854,0.3125,-0.7199219,0.2665301,-0.15672924,-0.15327673,0.08546093,-0.6049479,-0.29981926,0.26066485,0.40255377,-0.46303803,0.02844293,0.5422794,-0.66581357,-0.1435876,-0.02484921,0.0580529,-0.03857587,0.20073229,0.5331038,0.0559304,-0.18071581,0.08810764,-0.24658367,-0.23630385,-0.48502603,-0.28125,-0.44799805,0.56901044,0.18802641,0.02103028,-0.06529904,0.01614678,-0.07269491,0.11789308,-0.00701122,-0.62754756,-0.5701976,0.05636963,-0.11866588,-0.36092633,0.15330467,-0.36729875,-0.36631945,0.31143004,0.09225778},{0.0596817732,0.0443041176,0.149385273,-0.569531262,-0.371981531,0.153806448,-0.0912584215,-0.206995651,0.537202358,0.141169399,0.229508325,0.329370469,-0.0444566309,-0.147961199,-0.12182726,0.333054006,-0.307639897,0.568388522,0.360484719,0.0949611291,0.287109375,0.0513899252,-0.125808746,0.37122938,0.262601048,0.82421875,-0.580180943,0.52298677,0.547281921,0.0661216378,-0.182591125,0.772135437,0.331291437,0.305655509,0.0281958804,0.129374653,0.466945469,0.455078125,0.110342845,-0.140615895,0.401390165,-0.0823074579,-0.104960687,0.0195094701,0.32908079,-0.226499438,0.155195311,0.0308917407,-0.148448497,-0.120108306,-0.120592192,-0.00833303109,0.242077738,-0.297851562,0.235865146,0.364199698,-0.297714949,0.197854117,0.309570312,0.0959874168,-0.239708528,0.437448263,0.0580292121,-0.846354187,-0.199195504,0.181016117,0.10780447,0.230929345,-0.203116968,0.434413761,-0.00676203892,-0.229564384,0.0320207849,-0.270521581,-0.491180897,-0.232376412,0.340489596,-0.267578125,0.103736989,0.513760626,0.226660162,0.099586457,0.0688222721,0.144000277,-0.169921875,0.140585631,-0.00890029222,-0.55859375,0.338807851,-0.142632768,0.127544984,0.0159265064,-0.104226962,-0.42880249,-0.02286103,0.0108641749,0.383769393,0.0369463079,0.302734375,-0.235346839,0.233320311,-0.44921875,-0.0886503831,-0.0507429764,1.0703125,-0.360301912,0.433707297,-0.306560576,0.379976124,-0.27734375,-0.815104187,-0.190431625,0.118724339,-0.115419358,0.27633667,-0.525457978,-0.124816604,0.167025864,0.299765408,0.0671596155,-0.352570236,-0.359184444,-0.0920228884,0.185033724,-0.0901215672,-0.159175605,0.0342497863,-0.0915004164,-0.184170812,0.4393951,-0.307674289,-0.164522856,-0.191341966,-0.166597128,0.00452374341,0.133829474,-0.373246789,0.167543873,0.363351315,-0.307682306,0.0345977619,-0.32720679,-0.0367041118,-0.160552502,-0.333998233,-0.366980702,-0.0793445632,-0.20746024,-0.0452812389,0.457157254,0.134263754,0.25027281,-0.238269836,-0.566761374,-0.305693656,-0.521314561,0.394771636,0.597790956,-0.51171875,0.40229097,-0.089104265,0.0893632099,0.435645938,-0.386640638,-0.128408551,-0.0349223241,0.305579007,0.635323644,-0.0260146149,0.0998711139,-0.00575416675,0.187505692,0.300572664,-0.185537115,-0.2870709,0.136231899,0.167492986,0.497472435,-0.19284831,0.0395637229,0.0763978586,0.313389361,-0.6484375,-0.374956906,0.0567460246,-0.247579977,-0.137205645,-0.513939977,-0.228879958,0.352627158,0.20512639,-0.0135742668,0.1348131,0.697591126,0.747395813,0.447173715,-0.290012032,-0.0978892744,0.188885689,-0.240812987,0.0996118635,-0.24938783,-0.305623233,-0.649553597,-0.0546739176,0.123962544,-0.209003672,-0.548906267,-0.150348023,-0.241207391,0.096193701,0.172849044,-0.493648112,-0.232288018,-0.185059294,-0.0240569171,-0.0498168506,-0.205612808,0.0380225293,-0.0678610355,0.150943428,-0.635742188,-0.380694658,0.9140625,0.0142926769,0.41400972,-0.238857374,0.0766703635,0.288154811,-0.263639063,-0.0883943662,-0.538441062,0.772460938,0.1953125,-0.388652533,-0.382981032,-0.588134766,-0.161172941,0.478487104,-0.198181599,-0.108198062,-0.641983688,-0.285122871,-0.272274792,0.115471892,0.117376305,0.11668589,-0.112642407,0.329946816,-0.196267456,0.093478933,0.00019016389,0.206035614,0.0590076782,0.270569384,-0.143528163,-0.220223561,-0.295905173,-0.552951396,-0.129819244,-0.414703816,0.818359375,-0.22015059,-0.0112212738,0.296019256,-0.41103515,-0.111068055,-0.311498404,-0.0971728265,-0.17477864,0.484290093,0.734570324,-0.487304688,-0.535714269,0.0456683896,0.169463232,0.127458021,-0.0957176462,-0.791015625,-0.0732802674,-0.10010843,0.174816102,0.218782708,-0.0790540799,0.388569087,-0.141621485,-0.160666466,0.483315319,0.451866746,0.381901681,0.685937524,0.299749255,-0.23244758,0.781808019,0.0203711931,0.174836278,0.249192119,-0.429707646,-0.436910391,0.90625},{0.6174665,-0.04690108,0.4190512,0.11084571,-0.22071177,-0.23087423,-0.6998698,-0.03880718,0.43748486,0.39453125,-0.28036222,-0.05726361,-0.08396908,-0.48237425,-0.49304315,0.5835129,-0.17232291,-0.20470843,0.14645422,0.20800076,0.84277344,0.2821225,-0.43745178,0.40362385,0.4225474,-0.06387584,0.11718233,0.05397458,-0.30381575,0.18351686,-0.45794863,0.15429471,-0.27734375,-0.13377823,-0.14502761,-0.53716856,0.04753226,0.27242476,0.21966678,-0.03821171,0.8144531,0.30845353,0.03128832,-0.24760674,-0.20400235,-0.159658,0.22639042,-0.20947266,-0.296875,-0.35520327,0.65178573,0.0925054,-0.537207,-0.22902681,-0.378852,0.02170235,-0.04869923,-0.37304688,-0.41183338,-0.01395751,0.03709937,0.47645026,0.20846157,0.03369464,-0.03737289,-0.04221207,-0.4568721,0.08079182,-0.04625919,0.47574574,-0.09402879,-0.36523438,0.4775766,0.28985524,-0.36423612,0.03407979,0.03033638,0.5176411,0.58967394,-0.01008878,-0.182655,0.5546875,-0.6769832,0.68400496,0.31140584,0.29391277,-0.15140633,0.28515625,0.2822122,0.01234412,0.6517428,-0.07105504,0.10645251,-0.29991958,-0.297814,-0.08053725,-0.19962434,-0.10178316,-0.23292324,-0.36610773,-0.05141843,0.01768862,-0.26345882,0.29800907,-0.01081408,-0.00691637,-0.4572754,0.02080317,0.04067153,-0.08259109,-0.22904535,-0.4727421,0.19431238,-0.6020508,-0.24833883,-0.46824694,0.29985434,-0.15869038,0.08327617,0.64166665,-0.11276147,0.09030222,-0.00545992,-0.21620113,0.27444395,-0.75859374,-0.87158203,-0.05132338,0.23723683,-0.21618974,-0.20313695,0.3349988,-0.17384507,0.31153744,0.38195458,-0.05674076,-0.05230019,0.28802982,-0.6551011,0.0876495,0.7050781,-0.07279137,-0.01053356,0.49185458,-0.15822768,0.2986691,-0.31445312,-0.10013356,-0.00989133,-0.7359375,0.26757812,-0.44229403,-0.03516432,-0.4456936,-0.38867188,-0.54143184,-0.31642446,0.04765938,-0.14064893,-0.12439556,0.22794369,0.0644853,0.23293006,-0.13470377,0.18893264,0.15615454,0.18653835,-0.7138672,0.0929163,-0.00443239,0.14985596,0.4521821,-0.19631508,0.5830829,-0.0225933,-0.34855872,0.19236785,0.29209185,0.81640625,0.71875,0.38389757,-0.04213636,0.05981,-0.6742188,0.05203587,0.06540536,0.10354297,-0.24758062,0.32133928,0.00850481,-0.3418252,0.52283657,-0.4277177,0.4986683,0.30954194,-0.25875705,-0.33694294,-0.4592747,-0.07127912,0.01362353,0.53125,-0.46534243,0.6292067,-0.07787382,0.18652067,-0.7140067,0.32046813,0.4596354,-0.07056099,-0.25876674,0.2979946,0.20011684,-0.20994678,-0.02391456,-0.43395352,-0.15629743,0.20897341,-0.17380564,0.2840032,0.23297031,-0.05249875,0.09619141,-0.00307712,0.6982422,0.28609866,0.3154663,-0.5239258,0.98046875,-0.04797115,0.01363036,0.12891802,-0.06519777,-0.36126894,-0.80546874,0.31727013,-0.07371903,-0.31442973,-0.06838018,-0.18351892,-0.0324707,0.00325943,0.08722369,-0.5060764,0.10549181,-0.14934139,-0.37110603,-0.48895735,0.43064025,0.21922727,-0.1518187,0.22657304,-0.06909483,0.05480066,0.22266003,0.19527479,-0.35839504,0.38063827,0.17904358,0.35168457,0.02324315,-0.34955248,0.40330654,0.3028543,0.16996665,0.35944158,0.38277578,-0.7080078,-0.28023317,0.02857001,-0.19339179,-0.13622126,-0.49907485,-0.07231213,-0.3221819,0.13428164,-0.16503704,-0.06810452,-0.14846751,0.6748047,-0.16311125,-0.1884901,-0.18652344,0.71814907,0.27435488,-0.03978702,0.6189236,-0.7473958,-0.084169,-0.5445964,0.177297,-0.35938963,-0.23576415,0.12255057,-0.19486447,0.65625,0.05822391,0.6098958,0.25485393,0.21775162,0.46475956},{-0.0937660784,0.204081535,-0.270421743,-0.532226562,0.0202769917,0.215805233,0.213352725,-0.449069649,-0.0737124383,0.245133579,0.84375,-0.00972311199,-0.208463073,0.55859375,-0.104475677,0.397500902,-0.297905207,0.686006427,0.0424855612,-0.0334668793,-0.415942371,0.124843441,-0.455688477,-0.185522079,-0.338839293,0.0702710897,-0.113530271,-0.265704483,-0.457718968,-0.36328125,-0.00796417426,0.0270832833,-0.0249210186,-0.00791628193,-0.106424719,-0.235781491,-0.43486625,0.521875024,-0.491842836,0.0886180326,-0.158586085,-0.332974792,-0.559814453,0.543349862,-0.581764936,-0.12184076,-0.34279573,0.431761175,0.131817237,0.0619608089,-0.0395543538,-0.179151833,-0.082162343,-0.039327953,-0.349587172,-0.6953125,-0.314535648,-0.692057312,-0.386604965,0.600000024,-0.0756660178,0.545087397,0.333740234,-0.0871130154,0.486223489,0.0959193334,-0.0200283267,0.136266887,-0.112089202,0.0837197378,0.219245106,-0.211394072,0.630859375,0.13866736,-0.0974287391,-0.346723497,-0.00906582642,0.17669116,0.346606612,-0.866071403,0.0818020105,-0.0607721284,0.0551458411,-0.327245593,-0.274409652,0.0118619557,0.488352269,-0.378656924,-0.397488832,0.317264616,0.0551606342,-0.428691775,0.150777444,0.398290098,0.174263209,0.0475718789,0.180656523,-0.679492176,0.332998782,0.300686747,0.0778854638,-0.321122319,0.00476545328,-0.169923842,0.169445589,-0.0310499854,-0.0769042969,-0.40788573,0.0823021233,-0.463834256,-0.0866710767,-0.712713063,0.0800442174,0.545117199,0.462714523,-0.0265781395,0.279111505,-0.521444499,0.0385138616,0.134813726,0.250561625,-0.115721598,-0.170439899,-0.224103093,-0.159626633,0.0158516522,-0.0611782335,0.0869178846,-0.581891716,0.0133304242,-0.595117211,-0.176228598,-0.39634487,0.208010331,-0.845052063,0.273312837,-0.139648438,-0.386548907,0.446035892,0.242199928,0.471662253,0.643554688,0.454271406,-0.0452884473,0.310490161,0.174783364,-0.124839887,0.117409557,-0.0940445662,-0.074927792,-0.227132812,0.10712257,-1.04166663,-0.481684029,-0.0705194473,-0.119628266,-0.240770668,0.744791687,0.11039377,-0.221697018,-0.021479724,0.540707231,-0.0472088233,-0.00374004804,0.786458313,-0.569921851,0.0697972402,0.0204548109,-0.193335369,-0.123009838,0.00997691229,0.00549503183,0.136687398,0.0521991327,-0.0506064519,-0.500935853,0.221668005,0.277553767,0.359290093,0.0947954953,-0.03074627,-0.0257871896,-0.121327043,-0.479050726,0.195720345,-0.0676221251,-0.00998786557,0.34207055,0.535524786,0.321338624,0.217138365,-0.1640625,-0.683065891,-0.212427169,0.227962926,-0.533482134,0.0341708884,-0.0604257844,0.159093216,0.0615123212,-0.40625,0.378857911,0.332929403,0.102338828,0.404344916,-0.339871168,0.226522192,0.0321600959,-0.296806395,0.278211802,-0.000182929827,0.28603667,0.402686864,0.14450103,-0.0508099534,0.352530092,0.517159581,-0.091016382,-0.0221904833,-0.394229561,0.0630115122,-0.214170411,0.296015948,-0.0946458876,0.412091941,0.170908108,0.544963419,0.609019876,0.0915130228,0.146998644,0.181691185,0.330980718,-0.0536838099,0.20120953,-0.482724458,-0.189554706,0.729910731,-0.187049702,0.457780123,0.00748389727,0.211438105,-0.0886123255,0.610351562,0.0544051044,-0.0747622773,0.258737653,-0.522645712,0.0566599071,-0.100343466,-0.0788753256,-0.0844262019,0.108404078,0.229544386,-0.686197937,-0.413251758,-0.115467176,-0.18645601,0.564630687,0.363020837,0.692382812,0.145509258,-0.710156262,-0.021419974,-0.380479306,0.245144531,-0.0287773702,0.00783473626,-0.047708489,-0.0476254411,-0.689174116,0.237206608,0.0128613375,-0.553185105,0.0148028126,0.151852727,0.350328952,-0.348614722,0.649479151,-0.00884229783,-0.464482069,-0.0915598646,-0.36253348,0.370156258,0.234875709,0.409310579,0.0703240186,0.154327989,0.190440714,-0.166994348,-0.0724890456,-0.774218738,-0.204526678,0.142460942,0.0388550535,0.0329679176,0.477085173,-0.520920157,-0.517238438,-0.264668167,0.387640715},{0.2881167,0.05629265,-0.15668142,0.12397327,-0.23332237,0.0839403,0.00683631,0.29089355,-0.4969401,0.04519032,-0.35525647,-0.07521117,0.01784443,0.17332794,-0.34275413,0.38766572,-0.09764074,0.25195312,-0.30376643,-0.43733725,0.49836484,0.03007079,0.7668269,0.30859375,0.5940394,-0.10253042,0.49750435,0.18651243,-0.21333252,-0.702939,0.12396381,-0.11132073,0.10786717,0.1440948,0.09354551,-0.43746728,-0.34968263,0.26462722,-0.1435334,-0.1289304,-0.35842863,-0.24882774,0.7939453,0.7792969,0.15771563,0.36734068,-0.06253414,0.13670827,0.18854001,0.4370864,-0.5390625,0.49448243,-0.10513701,0.39060256,0.27640426,-0.48863637,-0.12554939,-0.7263569,-0.2548784,-0.54901415,-0.17093049,0.23734029,-0.5449219,-0.53125,0.2725397,-0.18063027,-0.43161526,-0.22228502,-0.10208677,0.827567,0.7698864,0.566857,0.31937134,-0.18219918,-0.40530252,0.28313577,0.25285208,0.05413114,0.6130515,0.19480689,0.08760028,0.18414459,0.51397234,0.39604592,-0.5189596,0.63178456,-0.03502917,0.4327016,-0.41359544,0.11352095,-0.22462907,-0.30182365,-0.0583222,0.7443182,0.11500993,-0.29005763,-0.23097512,0.39945534,-0.5158743,-0.06914042,-0.55651855,0.33620507,0.091091,-0.42210582,0.20114237,-0.00194146,0.7340495,0.01233603,0.19915943,-0.04699153,0.18106154,0.2406558,0.01036936,-0.22510478,-0.08419045,-0.02175567,-0.29205865,-0.02341946,0.03253796,-0.12692331,0.40726143,0.4022097,0.1494472,-0.3250541,-0.34764448,0.2675467,-0.13429075,-0.19771947,-1.046875,-0.14351243,0.32604688,-0.54521483,-0.20309386,0.26466465,-0.0203068,0.5546875,0.37102863,-0.18257046,0.8515625,-0.19674793,-0.35351562,-0.95703125,-0.08888377,-0.0053055,0.23638505,0.8339844,0.16071595,0.58026236,-0.13083264,0.10524212,0.28029314,0.49333245,-0.11331437,-0.11452507,0.1328069,-0.03206832,-0.00713863,-0.66567093,0.16598183,-0.39526743,-0.43434632,-0.10983487,-0.53876203,0.11032158,0.01449228,-0.32514068,0.10107891,-0.00666641,0.3006936,0.04286635,-0.42293432,0.25964725,-0.23140159,0.17383564,0.25064528,-0.98828125,-0.2704307,-0.6110677,0.03627889,0.15479816,0.2889099,-0.15328835,-0.17385241,0.14158024,0.08420947,0.12690231,0.49765626,0.03331489,0.47554788,-0.04476968,0.15583424,-0.14498027,-0.11769807,0.15858978,0.00551462,-0.34133732,0.5896382,0.66903406,0.07882514,-0.40990847,-0.03183361,0.11645416,-0.13770571,0.50076425,0.41663566,0.01249084,-0.5942383,0.93359375,-0.05714855,0.03591469,-0.05137841,0.08566445,0.22791904,-0.44326782,0.3027627,-0.32104304,0.0688877,0.0671875,-0.40529186,0.17575899,0.23874682,-0.09329864,0.02675779,0.61541194,-0.03092909,0.02049943,0.33297452,0.36223274,-0.6039063,0.23981795,0.06440224,-0.12893449,0.430697,-0.07838108,-0.00647591,-0.5687099,-0.0479683,0.2939768,0.06591516,0.11205853,0.64299244,0.13911086,-0.24276839,0.609375,0.18838947,-0.41691956,-0.13915627,-0.10467304,-0.08206861,0.04006291,-0.25285158,0.2861826,0.24219416,0.19482422,0.29882812,-0.00291156,0.52138156,0.2548177,0.01504605,-0.24655716,0.11592296,0.21477845,0.1894594,-0.28701246,0.04261799,0.15674812,0.19027965,-0.19627897,0.1660091,0.61757815,0.25887626,0.20455268,-0.2192987,0.12509352,-0.0896054,-0.45507812,-0.05515178,0.08298244,-0.18890071,0.16943921,0.31131685,-0.06668066,-0.5575658,0.12799369,0.06209608,-0.00370453,-0.12307427,0.57990056,0.63883466,0.06611929,0.29795694,-0.29396912,-0.06763944,-0.05797053,0.46835443,-0.1996823,0.5548828,-0.0421223,-0.04514275,0.41883296},{0.21291798,-0.06491414,0.09203863,-0.4289253,0.36402026,0.57421875,-0.15138106,-0.56004053,0.12052837,-0.0259486,0.6989183,0.2633526,0.267609,-0.3671875,-0.3641945,-0.11322441,-0.13232842,0.0267979,-0.07179725,0.03968659,-0.15434545,0.14257124,0.05034124,-0.5966146,-0.31835938,0.399302,0.13616884,0.1953647,0.15328954,0.3439715,-0.513432,0.19475184,-0.3076399,0.16406442,0.47075075,-0.4092572,-0.09885435,-0.68990386,-0.3837466,-0.2802265,0.03283395,-0.42474723,-0.06758567,0.352547,-0.4783781,0.03765468,0.06865667,-0.59905136,0.09424696,0.19728163,0.24555789,0.1958017,0.07009472,0.49173328,0.2270363,0.0033191,0.47233954,-0.04652615,0.41799378,-0.36820212,0.14698035,0.01280247,0.02509042,0.35851258,-0.33296996,-0.05726543,0.27171415,-0.23529992,-0.10646731,0.30556414,0.09495527,0.40213102,0.01865607,-0.19869897,0.19271573,0.69189453,-0.08837593,-1.15625,0.1406341,0.02499326,0.38674515,-0.13573326,0.0880713,-0.06207751,-0.01322599,0.46571416,-0.26853842,1.3359375,-0.03551408,0.11884676,-0.21870469,-0.00149599,0.42420015,0.5354124,0.31833652,0.49350587,0.48262626,0.15179275,-0.17038015,-0.7367527,-0.1718362,0.3164299,-0.0485815,0.21243532,0.5173087,-0.4433778,-0.11454424,-0.2479162,-0.17046775,0.7841797,-0.99609375,-0.51356536,0.02113994,0.28021842,0.11110983,-0.22312114,-0.06518483,-0.3603248,0.12420787,-0.38097426,0.6901042,0.3281324,-0.12644309,-0.2440209,0.04515022,-0.18649124,-0.07662454,-0.17434277,0.26085424,0.20412248,-0.08644035,-0.47147936,0.11767003,0.30273438,-0.50072336,0.45673493,0.2529223,-0.3212694,0.05058998,-0.32006598,0.24929883,0.10589696,-0.64023435,0.32141006,-0.07906453,0.65266925,0.21966323,-0.24710599,-0.02200351,-0.39556283,0.12939453,-0.35258964,0.5570313,0.43562013,0.03808225,0.19627105,0.13615578,0.03225388,-0.08980764,0.0224789,-0.00363374,-0.2492177,-0.07938576,0.8023437,-0.11841406,0.11958514,-0.00857208,-0.10232157,-0.44921875,0.23970331,-0.75423175,0.52313703,-0.04321608,0.07781101,0.67751735,0.40414664,0.69555664,0.02343235,-0.45685765,-0.02400609,-0.22171715,-0.16411768,-0.1669443,0.0567061,-0.1786908,0.44650465,-0.39436573,0.21090133,0.10885585,0.08743902,0.29018804,-0.31739783,-0.29882812,0.05981989,0.46466938,0.30858973,-0.30362603,-0.28315523,-0.52723217,-0.46661323,-0.6117527,-0.04049564,0.42912564,0.05845169,0.6159986,0.10028352,0.38954672,-0.22552225,0.7873884,0.3194589,-0.1449429,-0.09961566,-0.28515625,0.04545124,-0.02639233,0.43151212,-0.01838337,-0.27439752,0.22698404,0.0903805,0.72786456,0.22562674,-0.54817706,0.00455779,0.5436198,-0.06263875,0.08764869,-0.33895355,-0.28025427,0.5135968,-0.272503,0.32114363,0.13180965,-0.09085061,0.13386011,-0.09719627,0.44441965,0.16106832,-0.04920387,-0.32712808,0.33109868,-0.31544694,0.3769849,-0.34664416,0.16496931,-0.00365314,-0.30760846,-0.28995374,-0.0952329,-0.05484706,0.38278073,0.7088068,0.4648652,-0.1179073,0.02954567,0.02045779,0.02716261,-0.48541844,-0.19580078,0.03860186,0.01385828,-0.05774666,-0.17285596,0.31357488,-0.3784886,-0.32429585,-0.11622549,0.15968575,-0.17967366,0.18703078,-0.04372038,-0.3112571,0.23667514,0.75878906,0.6669171,-0.34954363,0.05055749,0.15821533,-0.47887325,-0.18303636,0.28613973,0.02502044,0.16994797,-0.3672799,-0.2687102,0.22605161,-0.013486,-0.14154199,-0.06114689,0.4706744,-0.5253906,-0.17576681,-0.38383502,-0.06591394,0.3094458,-0.0428315,-0.24362664,-0.7045201,-0.14063685,-0.15771176},{0.09642054,-0.02404564,-0.21881062,0.7471875,0.04663086,-0.27440137,0.10713285,-0.8489583,-0.54733455,0.08008844,0.27639148,-0.16944583,0.37478298,0.35939986,-0.00106865,0.62904096,-0.43659857,-0.48899147,-0.17087835,-0.48265624,0.13183959,0.57021487,-0.26848957,-0.12986328,0.31640625,0.2437779,-0.3173828,0.42774665,0.2665709,0.22368306,-0.02966662,0.10593642,0.22464631,0.22557384,-0.3613567,0.14556007,0.20759077,-0.44245258,-0.19961633,0.21725722,0.734375,-0.10520241,0.14111799,0.3633049,-0.21144396,-0.43463463,-0.35261628,-0.1125014,-0.5627604,0.09203985,0.15129969,-0.2998561,0.12889338,-0.49590227,-0.25585938,0.16798648,-0.16554768,-0.5078125,0.08200972,-0.34179065,-0.08060557,0.20649467,-0.05873566,0.00189087,0.23380074,-0.24922562,-0.20411474,-0.07591324,-0.7682292,0.05787116,0.46670604,0.29400277,0.11890358,0.05639134,-0.14063756,-0.5723307,0.30948243,-0.07937108,-0.09884092,-0.06239951,-0.32725418,-0.15621512,0.46309096,0.3016059,-0.66875,0.3553701,-0.20492378,0.550344,0.4117606,-0.0577693,-0.03341122,-0.09885683,-0.3993069,0.13867499,0.07859053,-0.06712338,-0.37554085,-0.5295139,0.10941055,0.03431042,-0.17769907,0.2645633,0.36704078,-0.43361545,0.4217805,0.27043608,0.03286765,0.70442706,0.35832253,0.16843759,0.12894437,0.10569041,0.21484588,0.26070064,-0.35084412,-0.09060125,0.32718462,0.19437954,0.22758801,-0.5253452,0.32630658,0.08472586,0.32706437,0.09375281,0.1241713,0.15432233,-0.10541003,-0.03838715,-0.55023617,-0.10328504,0.4896176,-0.265625,-0.12991787,0.13619094,0.4267578,-0.24921526,-0.16303879,-0.2723803,-0.10059513,0.74208194,-0.33964843,-0.00836675,0.02418302,-0.5179688,0.10619855,0.2368164,-0.50390625,0.27433348,-0.098603,-0.38567793,-0.07081644,0.10108436,-0.286171,0.07831902,-0.40025112,-0.33299676,-0.1601728,-0.09718101,0.2606651,-0.13817628,0.4329704,-0.5484375,-0.01721767,0.8544922,0.0939931,0.03768343,-0.16161947,-0.07620294,-0.37984034,-0.13432048,-0.0305998,0.14262646,0.05680266,0.48686323,0.36909056,-0.02979324,0.1489132,-0.03759314,-0.0142853,0.39133522,0.18306045,-0.34854823,-0.14354353,0.2804147,0.1611207,-0.25692245,-0.08106393,0.1217591,0.05733761,0.129389,-0.36410907,-0.09936654,-0.2861588,-0.35620856,-0.5232677,-0.35997242,0.39147258,0.6013569,0.2949138,0.6082261,-0.10551199,0.14596686,-0.06474824,0.01502655,-0.63242185,-0.11206708,-0.15140249,0.09476496,-0.18358019,-0.29198033,0.04722797,-0.06251442,-0.4569689,-0.3594557,-0.17480648,-0.2211914,-0.38670638,-0.14256105,0.3671875,0.03968172,0.05283269,0.00220376,0.18015824,-0.18406236,0.02287673,-0.25585938,-0.26258445,-0.61015624,0.40031123,-0.09375,0.10911544,-0.05255332,0.09253275,-0.14552268,0.26858017,-0.39448085,-0.688058,-0.44133112,0.19871862,0.29191947,0.4073221,-0.10109879,-0.00710045,-0.24665178,0.01765594,0.41836736,-0.22064678,-0.02880616,-0.41595984,0.40121618,0.12793936,-0.43161842,0.1587117,0.529231,-0.23784383,0.19761701,-0.19625272,-0.37018317,0.5314128,-0.11817623,-0.10005069,-0.0725049,-0.05308412,0.13043422,-0.39935136,0.13527161,-0.717913,-0.11692708,0.20357428,0.2626451,-0.01431791,0.69735056,0.04138266,-0.16994561,0.41909876,0.01496633,-0.11399852,0.30363145,0.5016868,0.27539062,0.27631328,-0.43269578,-0.14546536,-0.22460625,-0.2455563,-0.09985854,-0.17189604,0.53491515,0.50574446,-0.33694237,-0.3369003,0.1919025,-0.03578638,-0.55558896,0.10743626,0.58265626,0.99609375,0.36322916,0.38373244,-0.23775809},{0.364311337,0.446357191,-0.323308259,-0.237217739,-0.239700869,-0.282274723,0.456129819,0.0898632482,0.0954217762,-0.0796438754,-0.00248145219,-0.621386707,-0.334988445,0.576511562,0.00975170359,0.173842922,-0.137687653,-0.387080431,0.339859009,-0.309495687,-0.221214518,-0.143028647,0.17381081,0.608593762,0.0681269392,0.415581584,-0.0286674276,0.353319108,-0.157188073,0.0985326022,0.0652296841,0.00692752935,-0.0457459912,-0.0988471657,-0.437262714,0.036729712,0.007950712,0.0501812808,-0.192412853,-0.00550704123,0.229594871,-0.0976471901,-0.666992188,-0.274484813,-0.0191490706,-0.213802487,-0.0349157527,0.16599445,0.737379789,0.270491928,-0.0204013214,0.258700281,-0.122311831,0.250965148,-0.603001654,0.131367996,-0.178754106,-0.115285873,0.487304688,-0.146933421,0.0889077485,-0.606249988,-0.222692937,-0.443317235,-0.151415467,-0.0289976671,-0.46856153,0.121771395,-0.400419772,-0.180094406,0.0785694793,0.044307936,-0.00644364022,0.299667239,0.415283203,-0.480442166,-0.245222196,-0.288066,-0.312335283,-0.0680542737,-0.0937856659,0.152307734,-0.030255381,-0.0573924482,0.529221773,-0.139645725,0.449148983,0.379790157,0.0304863174,-0.246624604,0.0346332714,0.412063956,0.370132685,0.108656377,0.0337875076,-0.521531999,0.129400074,0.123887122,0.51171875,0.428282619,-0.291015625,0.0254316311,-0.0827762634,0.668619812,0.12460506,-0.18361266,-0.299858928,0.222615808,-0.627232134,0.62890625,0.314237833,-0.260764629,-0.212860838,-0.0371065699,-0.197265625,0.0633953735,0.0737345293,0.256915778,0.159182817,0.186514989,-0.381876618,-0.0725170523,-0.73828125,0.0844447538,-0.00584432436,0.0301885065,0.0988612548,0.183566451,-0.0801068917,-0.150921926,0.0187180601,-0.00945923943,0.164051712,-0.791015625,-0.602072001,0.339823961,-0.422897339,0.144056454,-0.25690043,0.425579488,0.31640625,0.417044967,-0.0488139242,-0.178199187,0.100351691,0.204477891,-0.41681385,-0.364921868,0.406030267,0.7421875,0.212896556,-0.030217614,0.343703508,0.447151482,-0.414772719,0.110411569,0.409014821,-0.179674029,-0.198209941,-0.204610065,0.298732847,0.0568695478,0.225582868,0.00815209374,0.0543165095,-0.189483106,-0.705078125,-0.578125,0.220668241,-0.515468776,0.181036815,0.0399945863,0.126914874,-0.121586807,-0.21193862,-0.186528504,0.121837296,-0.706406236,0.293933094,-0.661558509,0.518930316,0.181607664,0.615722656,0.220249847,0.337988287,0.0818184614,-0.638020813,0.0161676332,-0.0779146478,0.0456765667,-0.904296875,0.197807878,0.0328421406,-0.423796624,-0.215308011,0.234340474,0.20794189,-0.0320120417,-0.0571723953,-0.210453302,0.0915663764,0.0328363441,-0.91015625,-0.178761512,-0.683948874,0.351340562,-0.345579326,-0.481026798,0.414086312,0.119548529,0.356787115,-0.921875,-0.552329004,-0.291115373,0.400077403,0.0734420717,-0.143543884,-0.00224666507,-0.0455284715,0.305670619,-0.0795618296,0.370260417,-0.421037942,0.00972726848,-0.0774942487,-0.616477251,0.41799587,-0.0903049484,0.12444482,0.0395394601,-0.0202129185,-0.167431638,-0.0201685727,0.489218742,-0.301769882,-0.173858106,0.00980522949,0.270374656,0.241159886,-0.115460701,-0.133339539,0.123915322,-0.0888905227,-0.525415361,-0.241492018,-0.263671875,0.226533875,0.186531588,-0.00700310431,-0.139602289,0.470157385,0.307545036,-0.88671875,-0.549479187,-0.278422564,0.426637888,-0.157690436,-0.780468762,-0.000807625183,-0.13526307,0.132827938,0.461597353,0.196719542,-0.183577612,0.0129118264,0.803710938,0.0632282346,-0.128861338,-0.249241725,-0.292007446,-0.00730705773,0.0204656813,0.151373535,-0.00169943855,0.0166697334,0.744531274,0.139035568,0.0335339792,-0.593544424,0.366304398,0.0671745315,0.540930688,-0.250540584,-0.0397914276,-0.435593933,0.576171875,-0.292979002,-0.518066406,-0.206054688,-0.204058155,-0.0991258994,0.413823783,0.154358223,0.113767914,0.298961103,-0.108585566,0.105201311,0.493519187,0.146504194,-0.508007824},{-0.00836929586,0.26859802,0.452722877,0.210926279,-0.247128531,-0.633789062,0.623497605,0.106976829,-0.111841209,0.402295321,-0.232870087,-0.141097009,-0.48617062,-0.383978963,-0.143077806,0.0776846036,-0.405928314,-0.442294031,0.0503285937,-0.0747077018,-0.442157447,-0.0379208028,-0.193815097,-0.0335289501,0.198772162,-0.735026062,0.0794201568,0.327180684,0.32513386,-0.387646496,-0.0910863578,0.266610354,-0.470629871,0.787760437,-0.000889037445,-0.173828125,-0.33586517,0.338007808,0.207040846,-0.112774007,-0.322186708,0.619698644,-0.162566647,0.391276032,-0.493065298,-0.607547879,-0.385715425,0.565682888,-0.28991133,0.256808817,-0.193822309,-0.632595479,-0.0368631147,0.357242852,-0.248777851,-0.0979109108,0.412904263,0.034354534,-0.102014184,-0.662212193,0.185074255,-0.137166068,-0.185050502,-0.193346903,-0.365154982,0.108363777,0.221234232,-0.332986116,-0.583243549,0.0979185626,0.250608116,0.644921899,-0.377259046,-0.282275587,-0.11426419,-0.599961579,-0.485815823,0.229968652,0.481065542,-0.276392221,0.11357367,0.3135674,0.188039869,0.384986728,0.372962475,-0.0651637465,0.184593722,0.0824924707,0.625339687,0.410136312,-0.00585864577,-0.246099085,-0.0286909621,0.217732951,0.0173294134,-0.465100735,0.109154984,-0.00331849908,0.0445365794,-0.611914039,-0.0890792385,-0.601692736,-0.11354167,-0.155255944,0.182500586,0.278306931,-0.0717608407,0.229032457,0.0140609294,-0.181564987,-0.323404938,0.232876554,-0.325028062,0.338785797,0.177249864,-0.0776453614,-0.323202044,-0.112280644,0.00533019612,0.108141445,0.197269097,-0.205039203,0.0264035873,-0.0303496681,-0.152378723,-0.0298954826,0.0805272982,0.933035731,1.0546875,-0.120568596,0.210398838,0.48245874,-0.485965163,0.0937116444,0.714062512,0.249717385,-0.174304411,-0.0678867698,-0.0176182371,-0.408528656,0.135286108,-0.490004599,-0.0840137377,0.43367064,-0.00539035024,0.498546511,-0.0460266657,-0.011481679,0.358351171,-0.238776714,0.0582703874,-0.833984375,-0.627864599,-0.0644928589,0.613991499,0.28334263,-0.383741558,-0.24879773,-0.0102204662,-0.51953125,0.115215436,0.0305114146,-0.0124255251,0.0700851083,-0.137752399,-0.479791373,0.131367117,0.478215158,0.740234375,-0.0759040564,-0.517816305,0.0910615623,0.144492671,0.417877913,-0.241226196,-0.249232695,0.144086018,-0.0625572056,0.407347262,-0.309495807,-0.155263767,0.276352167,0.274419129,-0.249715522,-0.00327655417,0.215870529,-0.0273551475,-0.290031552,-0.54296875,0.227617949,-0.235797986,-0.0483584665,0.16696392,-0.0796077847,0.218900234,0.499265492,0.14893654,0.569695711,0.305626512,0.498201072,-0.135246307,-0.747395813,0.562705576,0.147470832,-0.0493282378,0.26462239,0.402466923,0.163095549,0.152361557,0.0750012174,-0.303742439,0.0656806827,-0.53722775,0.118416838,0.0141196372,0.0978697464,-0.265551388,-0.0626839399,-0.162092537,-0.169003993,-0.112516411,0.0304638296,0.276411027,0.153300285,0.620225668,0.399537861,-0.183515385,0.0678447857,0.0783594474,-0.234407559,-0.177751452,0.108617991,-0.394450545,-0.638671875,-0.443023354,-0.163066015,-0.132319897,-0.166992188,0.0836991817,0.6953125,-0.0556740016,-0.493279934,0.406312346,-0.440362006,0.603298604,0.112244628,0.252840906,-0.165543616,0.342020661,-0.302734375,0.33696121,-0.297826529,-0.758928597,0.403266072,0.105473153,-0.3671875,0.275269896,0.0122106047,0.592354894,-0.2684187,0.460011005,-0.248794794,-0.0478859805,-0.0589840524,-0.076142326,0.200667366,0.147436827,-0.10789492,0.126901835,-0.015028812,0.366419047,0.00493164407,0.181643471,0.27551809,0.156694561,-0.258741647,-0.037135683,0.178705335,0.387513816,0.00708663743,0.135725632,0.0962158889,0.679857314,0.0815404356,-0.0646912903,-0.0383850709,-0.153283536,0.498398006,0.183542758,0.625240386,-0.677584112,-0.324120611,-0.141104296,-0.404320687,-0.203212574,0.0291626621,-0.751302063,0.0659228787,0.338829994,-0.0639956668},{-0.219175681,0.0335594788,-0.108361818,-0.0774047822,-1.0234375,-0.505657315,-0.0192830488,0.205544993,0.343859732,0.249706805,0.206033915,-0.275390625,0.244797453,-0.553013384,-0.533463538,0.34073022,0.0852335095,0.0879348069,-0.0625587404,-0.188941449,0.188943699,-0.190832287,-0.555042624,0.323248118,-0.354513258,-0.845703125,-0.136251539,-0.0354027189,0.436409056,0.158616692,-0.114235274,0.241603807,0.394756615,0.0622101799,0.108849637,-0.45513165,-0.0536797382,0.0650183633,0.0935274884,-0.272340119,0.0967088565,-0.559933007,0.0118964678,-0.0342048518,-0.272445321,-1.046875,0.373165965,-0.148424596,-0.740411937,-0.238292739,0.158660382,-0.210402131,0.494531244,-0.86328125,0.0200959258,0.042247273,-0.159208417,-0.135238677,0.064967677,0.0898410231,-0.428526193,0.196267873,0.274362057,-0.249654725,0.0922989622,-0.0370897092,-0.0903376564,-0.8203125,-0.0409992151,-0.155277073,0.322265625,-0.393486261,-0.399158299,-0.0151795298,0.546875,-0.33984375,0.0693141073,0.317358613,-0.0908236206,-0.252904475,0.59099263,0.457955033,0.0144697931,-0.336997777,0.205970123,0.0464383885,0.0242330953,0.642447889,-0.149333194,0.225990117,0.0440313928,0.15858373,-0.087400049,0.875651062,0.00159992895,-0.307709157,-0.0465873815,-0.743923604,-0.241252497,0.102742881,0.261785209,0.305590987,0.83203125,-0.279296875,0.176755339,0.060058929,0.109118477,0.454055071,-0.0663791895,0.0666398555,0.254826844,0.026355749,0.666324019,0.440369189,-0.0411638282,-0.351302981,-0.0995935053,0.0670881122,-0.177309528,-0.446014106,0.357365549,0.102564812,0.170895994,0.0379638672,0.0262891613,0.238787621,-0.383799225,0.468415171,-0.16750057,0.269629508,0.37290144,-0.392521113,0.250579625,-0.0478248186,-0.442989856,0.523401022,-0.220171615,0.410435259,-0.429629207,-0.205952957,-0.0812934265,-0.0325898938,0.0312139597,-0.000223371098,0.282204866,0.0504333228,0.272512347,-0.340686023,-0.188458979,-0.200176165,0.323148161,0.0154448636,0.0518712625,0.0112175392,0.100554772,0.0998608544,-0.0854191408,-0.282275736,-0.613099575,-0.0199087635,0.242291242,0.0144896451,-0.24068673,0.309717327,-0.185097829,-0.0254557729,0.57005775,0.326156974,-0.476210952,0.414244562,-0.457905024,0.727539062,0.0226975679,0.167913094,-0.749739587,0.387642056,0.1167254,-0.20509018,0.00979465526,-0.176737502,0.0578561909,-0.217739582,0.208556324,0.000177889116,-0.320303887,-0.157289296,-0.20613417,-0.270525455,-0.164139092,1.078125,-0.401221097,-0.371028215,0.0277128294,-0.163548082,0.0810553655,0.0314711183,0.109178506,0.210483223,0.0521281622,0.144508272,-0.115179196,-0.207591712,0.29293707,-0.292042375,0.057862848,-0.556607544,-0.047751423,-0.0580007918,-0.129897892,-0.597460926,0.0353835151,-0.319297314,-0.382983834,-0.0360083468,0.0222727526,0.112288475,0.0534272455,-0.472347856,0.276236624,-0.229921997,0.223117769,0.0601980612,0.26171875,-0.276253968,-0.410402447,-0.056136582,-0.00119046704,-0.477395833,0.221705899,0.329095095,0.358329654,0.0398518778,-0.203653097,-0.674609363,0.0539169088,0.423828125,-0.75390625,-0.0627658889,-0.0261696316,-0.337004483,-0.164994523,0.254862666,0.00302840886,0.158712134,-0.367248058,0.81640625,0.0575409159,0.334932864,-0.52734375,0.550164461,-0.415990889,0.410654366,0.21870178,0.735491097,-0.260635167,-0.43271938,-0.437233657,-0.319331527,-0.0917832404,0.424837232,-0.316339284,0.419672549,-0.371126682,-0.20025222,-0.145507812,0.118629061,-0.746803999,0.202004135,-0.230938867,-0.445134938,-0.0478336625,-0.604166687,-0.2496804,0.147440329,0.0626365617,0.318208069,-0.467740327,-0.0903381184,-0.43166098,0.228556961,0.111305088,0.121810131,-0.16303049,-0.0354205556,0.325168341,-0.396708995,0.112775609,-0.167000964,0.142562211,0.0715367347,0.346622914,-0.303605944,0.0435582772,-0.241719648,-0.113289587,-0.79296875,-0.102293588,0.117584363,0.094966352,-0.530997992},{-0.405780256,0.115004443,0.0592902191,0.0888369828,-0.173807785,-0.154346049,0.282281846,0.78125,0.230505139,-0.275246531,0.143502235,-0.0864365846,-0.0526283719,-0.275455028,-0.173347384,-0.250883996,-0.8828125,-0.10694278,-0.214329168,-0.0986244753,-0.104948737,0.194295123,0.704975307,0.296875,0.376676083,0.0977145955,0.361892372,0.664453149,0.0680744946,-0.0698108152,-0.0668596104,0.615513384,-0.00020469015,-0.153775916,-0.532971382,-0.135198012,0.196297094,0.100579068,-0.228987858,-0.0874039531,-0.7734375,-0.325129569,-0.44390443,0.00741213048,0.266656041,-0.5078125,0.116647013,-0.0229438674,0.170908332,-0.015973134,-0.130386278,-0.102822058,0.00517241471,0.0191798098,-0.298803806,0.400440693,0.542621553,-0.316254914,0.291966349,0.00461821072,0.258874208,0.101061247,-0.0630308539,-0.312517762,-0.563262224,0.0435620546,-0.139622495,0.169936642,0.235766217,0.190463915,-0.0122716203,-0.329922199,-0.637109399,0.0367272869,-0.184092179,0.13183932,-0.280198306,0.0759316757,-0.525781274,-0.221249998,0.755208313,-0.326106131,0.038908463,-0.0421527252,-0.154259741,0.205504224,0.736979187,-0.00108833122,-0.0544490293,-0.106640287,-0.0871539637,0.427897125,-0.112798035,-0.0917805061,0.147445008,-0.0490704961,-0.0761748925,-0.0377380997,-0.361109078,0.123743795,0.0241837446,0.271484375,0.439151108,-0.707465291,-0.113998055,-0.114734404,-0.473513722,-0.318627149,0.506370187,0.132793054,-0.288085938,-0.0833108276,-0.10098096,0.0978178009,-0.00714093121,0.439290375,0.0946587622,0.0033119712,0.0111398054,-0.0807790235,0.238800317,0.768750012,0.412368208,0.254869193,0.459140629,-0.0439392366,0.0139929177,0.521673381,-0.256671578,-0.109413728,0.424389988,0.154255763,0.548768938,0.321267128,-0.184089705,-0.265505075,-0.282363385,0.101987094,0.143047765,0.374164104,0.0584617183,0.0458943211,-0.330072194,0.218741208,0.228985652,-0.150855482,-0.282272518,0.249345288,-0.071026139,0.0163907409,0.33197251,-0.105210878,-0.0404003896,0.155262649,-0.0759248585,0.205561712,0.0406858772,0.15435566,-0.166508123,-0.0761947855,0.00995683298,-0.217203096,-0.121375866,0.18058534,0.0659297109,0.164571196,0.228532627,-0.302894056,-0.491228074,0.327204764,0.680989563,-0.0495460518,0.510063589,-0.299738109,0.187501922,-0.235330403,0.0706017017,0.158160672,-0.647187471,0.0801413283,0.41416952,0.323334694,-0.129852131,0.381738275,0.133346453,0.194343716,0.528556049,-0.529181957,0.173818976,0.405202836,-0.0174488742,0.501386106,-0.329167932,0.454227954,-0.102994107,0.0363421515,-0.346726835,-0.0368603468,-0.0156113943,0.579817712,-0.426023245,-0.0881325006,-0.128879473,-0.231935903,-0.01360426,0.0754282624,0.553049386,0.0525997728,-0.0907924324,0.0634802654,-0.232456341,0.0497527607,0.128404707,0.434598207,0.630709112,0.0812771395,-0.352597266,0.262747884,-0.517981172,-0.147428513,-0.278363109,0.245117188,0.490857124,0.0815263465,-0.38178587,-0.16788581,-0.270450354,0.529526651,0.243083641,0.612656236,-0.29585138,0.214811072,0.113530889,0.013896985,0.0321793966,-0.242145464,-0.411132812,-0.280230671,-0.42211318,0.78515625,0.206588939,-0.411906153,0.346565306,0.246061906,0.388671875,-0.32904011,-0.0619853996,0.409314573,-0.770182312,0.374917239,0.0491896719,0.139171466,-0.560631812,-0.105178736,0.0575668886,-0.22513701,-0.306622088,0.219809934,-0.111096136,0.144962519,-0.18744722,-0.127978206,-0.0898579508,-0.268505245,0.331039667,-0.83984375,0.141645446,-0.163582429,-0.370201468,-0.0673705488,0.350503564,0.0316316262,-0.276344478,-0.0534564294,0.403307468,-0.0707781315,0.0447838828,-0.288112819,-0.303648233,0.0616469719,0.0111399563,-0.416067034,-0.415488601,-0.319241822,0.113561861,0.122764423,0.102989152,-0.341995507,0.21049647,0.695612967,-0.0124207297,0.751562476,0.0754896849,0.225593224,0.329118997,0.248883933,-0.470570385,0.187953278,-0.117442042,-0.470473349},{-0.24655879,-0.4486471,0.05409054,0.59160787,-0.7199707,0.03147101,-0.61035156,0.0725391,-0.3702042,0.15529963,0.32329798,-0.0148423,0.20413306,-0.3104297,0.10209477,-0.05492217,0.07255165,0.1489444,0.10838314,-0.26656932,0.11886971,0.01958833,0.574145,-0.55885416,-0.0529702,-0.08378296,-0.4985526,0.24966896,0.04306222,-0.7427455,-0.02477285,0.12792781,-0.3972656,0.29018483,0.0624554,0.08795612,-0.30086938,0.18558364,0.13083616,0.05305891,-0.18318805,0.48808914,0.21480061,-0.14255664,0.10443161,0.14020535,-0.13428828,0.7421875,0.11334459,-0.42987806,-0.03149367,-0.26077348,-0.12790823,-0.4256405,0.51737255,-0.19396338,0.1796764,-0.49392012,0.16299827,0.07177282,0.22014199,-0.05667622,-0.00482894,0.342951,-0.02221004,-0.20701602,0.07959423,-0.01752715,-0.21284734,0.26854435,0.20018196,0.03955108,-0.26750386,-0.08234909,-0.06591472,-1.0273438,-0.15330952,-0.17967345,-0.04749585,-0.1169182,-0.08497164,0.29401705,0.25290775,0.52912945,0.1718935,0.06031138,0.13570479,0.06030684,0.45113394,0.465392,0.02084876,-0.00645858,0.2157153,0.18651748,-0.08251186,0.06746992,0.07105577,0.12988521,0.14746378,-0.5918337,-0.3908184,-0.25585938,0.3758805,-0.07519667,0.03703387,0.36012885,0.3564148,0.04961183,-0.13090795,0.35122514,-0.54085726,-0.12258347,-0.15185882,0.02614065,0.14692883,0.20995149,-0.03272397,0.03091207,-0.34366652,-0.01309288,-0.87630206,0.1337593,0.10447995,-0.28023228,0.38665798,0.07103693,0.18218675,0.14255862,0.35272217,-0.09737507,-0.24271648,-0.27233595,0.28416148,-0.06229831,-0.00612833,-0.40703124,-0.22857767,0.3708968,-0.2861741,-0.35136718,0.01004926,1.09375,-0.07590488,-0.63720703,0.04494799,-0.02441627,-0.14893207,-0.11200866,0.18897562,-0.48225912,-0.14697056,-0.00313415,-0.4432566,-0.01262407,-0.13768467,-0.57230395,-0.33889678,0.4285003,0.05597406,0.00678564,-0.03058531,0.1885041,0.24025601,0.03871965,-0.22552797,-0.4111134,-0.24293487,0.0977329,-0.20312013,-0.47826087,-0.05809315,-0.06572785,-0.487264,-0.546875,0.10527846,-0.1013311,-0.20417316,-0.6672065,-0.14748971,-0.40137511,0.27725396,0.6611328,-0.1836328,0.2343781,0.7007812,0.22794932,-0.12332671,-0.05055752,0.12232117,0.62290394,0.10981111,-0.02914506,0.05168556,0.20704627,-0.00503223,-0.32987708,0.1605644,-0.4378756,0.42380136,-0.31947857,-0.5410156,-0.14359538,0.21053933,0.36895752,0.33298916,0.4644165,-0.1328496,-0.39260253,-0.02447114,0.23192176,-0.921875,0.22471473,-0.52162194,-0.73828125,-0.14065278,-0.27734375,-0.07372968,0.18743838,-0.13573602,-0.09473468,0.2793065,0.34271425,-0.02050926,-0.51188153,-0.12739746,-0.03383503,0.01719945,-0.44682753,0.00551137,-0.06420295,0.13471878,0.34169474,-0.27826935,-0.53526783,0.01255609,-0.5489784,-0.2822124,0.08372605,-0.0649105,0.65066963,-0.07614994,0.05844865,-0.37276518,0.08573688,0.44916046,-0.5597826,0.03969474,0.14842333,0.47188407,0.16113879,-0.20107421,0.03892385,-0.33271486,0.09421472,0.32902184,0.06261444,0.0157114,-0.5411932,0.08273017,0.15728499,0.07227997,0.20805393,-0.25976562,-0.47591817,0.11375684,-0.30263957,-0.13521585,0.6,-0.744449,-0.43041605,-0.09325033,-0.08401867,-0.05956136,0.23192376,0.32903606,0.26063094,0.06806544,0.4660773,-0.00430046,0.09960141,-0.18262167,-0.00587781,0.3565221,0.29788044,0.1796524,0.1377249,-0.20312218,-0.03923072,-0.6785714,-0.16349961,-0.350596,0.06013754,0.07029346,0.18364216,-0.07741319,-0.16406883,0.50013787,-0.16503248,0.4983428,0.14596184},{0.371913373,0.54725796,-0.296875,0.463948578,0.00715180719,0.189405635,-0.416080743,-0.799218774,-0.519708812,-0.0530826822,-0.8046875,0.218698606,0.252752542,0.0245574564,0.168911442,0.729492188,0.378763974,-0.0437170342,0.140537322,0.106674574,0.143507048,-0.410303265,0.129901454,0.0971687138,-0.533100307,0.012903614,-0.12059094,0.381939828,-0.8515625,-0.451048255,0.301789314,-0.137631893,-0.068341352,-0.35435465,-0.30078125,0.27833128,-0.480088979,-0.303698719,0.608473539,-0.241566777,-0.279367059,0.663574219,0.223623559,0.172821835,-0.0954673216,-0.021441035,0.00689775078,-0.0934957787,0.361385286,-0.139607742,-0.0529870279,-0.0925461948,-0.0923371837,-0.775781274,-0.147463158,-0.0453803912,0.316415817,-0.282291949,-0.325317383,0.136560217,-0.0703588724,-0.149352416,-0.153320312,-0.0222128164,0.0870684236,0.499899834,0.383828133,0.521484375,-0.309540719,-0.0175853446,0.23376441,0.17096518,0.187973201,-0.0771940798,-0.53515625,0.0029844786,-0.0651518032,0.540009499,-0.0158278178,0.571874976,0.307541013,-0.234816119,-0.199813172,-0.272403479,0.258732736,-0.0561083779,-0.0983842239,0.189451724,0.145041153,-0.17093192,0.392704964,0.34138909,-0.409250826,0.0881460309,-0.392720163,-0.479317427,-0.14016737,-0.348490685,0.317370057,-0.373986244,-0.32524246,-0.475750804,0.109412186,-0.0325890556,0.0715385452,-0.0619275123,0.0198679361,-0.117606379,-0.26267913,0.272516221,0.288136572,0.0130036315,-0.0898353457,0.0774138793,-0.322084397,0.363296032,-0.234837428,0.0584539399,0.064052254,0.098815605,-0.48835358,0.185571015,0.49994576,0.720920146,0.0628654659,-0.248846918,-0.139166757,0.275330603,0.0310288053,0.222144619,-0.529326916,-0.113068789,-0.263671875,0.780468762,-0.228947654,0.0024564811,-0.338998795,-0.29598245,0.122293986,-0.457331717,-0.492404521,0.302719921,-0.02917061,0.0153691098,-0.112544812,-0.0196166504,0.102075428,0.383832961,0.0395353138,-0.0659227744,0.228486091,0.0291072112,-0.454887986,0.560576022,0.245515928,-0.107206121,-0.0944590122,-0.159196779,0.547044814,0.0890634954,-0.293856531,0.9921875,0.0928177536,0.258778244,-0.23343046,-0.219703659,0.369149148,-0.288115084,0.0449844301,0.0224363357,0.1684383,0.318523645,-0.203152359,-0.0710478052,-0.179615453,0.290115356,-0.183606118,-0.29296875,0.303745091,0.180601805,0.433741152,0.0472528525,-0.249277562,-0.132894322,-0.611430943,-0.107386999,-0.0908044055,-0.204121649,-0.0280653238,0.119397081,-0.154330492,0.454752594,0.101017386,-0.230972052,-0.155238643,0.0216651764,-0.087379545,-0.184553728,-0.249215752,-0.421918392,-0.0261486731,0.186525464,-0.036013782,0.96484375,-0.323186696,-0.255879581,-0.140646651,-0.160184205,-0.254873157,-0.0742275119,0.0876689255,-0.19926168,-0.190433338,0.0573788732,-0.213858336,0.0616071224,-0.293967396,0.199262008,-0.0825216547,0.0161974188,0.0710507557,0.2383136,-0.0406343415,-0.112335913,0.463923305,0.0717894435,0.895833313,0.323249519,-0.157637537,-0.329130709,0.468394876,0.252976596,-0.139643013,-0.198678151,-0.167478353,-0.0876348913,0.892578125,-0.0174754262,0.106910028,-0.293059409,0.0597407147,-0.0374631174,-0.12747547,-0.703804374,0.0593056045,-0.193359375,-0.552686751,0.0346887819,0.149447739,-0.463233888,0.433731288,-0.169888094,-0.121257521,-0.280128002,0.129413098,-0.338883936,0.110651538,0.074749276,-0.294050246,6.38156416e-05,-0.0808696449,-0.3830024,-0.0297458805,0.159201816,-0.57421875,0.358461142,-0.060313832,-0.55859375,-0.379909933,-0.458112091,-0.124434471,-0.0595645085,0.306640625,0.220765039,-0.0488211624,-0.101576112,-0.130328327,0.0283856802,-0.4455024,0.0158768985,-0.341620088,-0.500284076,0.0708007812,-0.33112067,0.104954191,-0.200277701,-0.398353189,0.0650084093,0.0582626797,-0.387526929,-0.0222559571,0.11375802,-0.0984131247,0.264632672,-0.73046875,-0.509447694,-0.398421735,-0.114268035,-0.123275921,-0.314368218},{0.5078125,0.2382513,-0.04239197,0.69962287,0.13960125,0.05651478,0.08028852,0.34195796,0.10347652,0.4813609,0.10109612,0.03363125,0.5008929,-0.1811804,0.11060204,0.26367188,0.20119065,0.51171875,0.300741,-0.6587776,0.75703126,-0.064707,0.45898438,-0.38082933,-0.58121747,-0.54473877,0.0885971,-0.00130807,-0.06138684,-0.47256398,-0.07521038,0.09591848,-0.15042056,-0.11761504,0.3810764,-0.11530692,-0.06980455,0.23771225,0.45498934,0.32527044,-0.20648816,-0.853125,0.04855797,-0.32020044,0.3125645,-0.20795213,-0.21730857,0.02570804,0.10725322,0.23585579,-0.11079263,0.02289147,0.11424693,-0.31346256,-0.43554688,0.1362095,-0.22453877,0.7871094,0.15625,-0.6918658,-0.5175426,0.49840665,-0.11669461,-0.35638243,0.20172858,0.28813824,0.07346483,-0.57421875,0.5592448,-0.18845138,0.4375227,-0.08151268,0.09814453,0.02508118,-0.13234074,0.3230758,0.45121256,0.49658203,0.14936012,0.67871094,-0.6201172,-0.50079346,-0.22363642,-0.13814542,-0.02525605,-0.19046585,0.04515595,0.45606124,0.42952168,-0.11647595,0.43958333,0.5890625,-0.31734458,0.17578873,-0.45304987,-0.19918324,-0.07107196,-0.58024794,0.0955077,0.04708293,-0.04610351,0.06395641,-0.23768812,0.15482816,-0.571875,-0.07271776,0.30946395,-0.34281313,-0.01074405,-0.20611078,0.09853113,0.29192707,0.33499613,-0.07957409,-0.10130545,0.1718683,0.18639678,-0.4121379,0.5764974,-0.13279843,-0.51112354,0.13961613,-0.31153467,0.21040148,-0.5332705,0.25061253,-0.05664846,-0.15273696,0.01646328,0.10838515,0.0611698,-0.06914188,-0.06421433,-0.08445556,-0.19820099,0.2373798,-0.07250977,-0.01582161,0.04148407,-0.00625653,0.16898143,-0.61514944,0.31734833,0.06914715,0.02519399,0.39838263,-0.23386642,0.1875207,-0.36226326,0.11378001,-0.13338386,-0.23820682,0.0947087,0.21095753,0.14254123,-0.3144161,-0.48258197,0.33591506,-0.03075496,-0.57046276,0.14354739,0.10128652,-0.23229693,-0.351503,0.05905881,0.4392578,0.09348963,-0.11402594,0.06978622,0.3057551,-0.17092024,-0.06959449,0.23331417,0.2505286,0.32989338,-0.03834957,0.01410088,0.67285156,0.23777924,-0.07226822,-0.2098972,-0.16991593,-0.06269503,-0.07570767,-0.00778904,-0.28807107,0.07638689,-0.31637654,-0.28995767,0.8426339,-0.5097409,-0.529565,-0.31351364,0.01570114,-0.0446492,-0.2794198,0.04184726,-0.68589157,-0.04602031,0.33306172,0.447206,-0.5949219,-0.01949166,-0.29982972,-0.53553426,-0.43756008,0.44140625,-0.14398871,-0.468624,0.04429774,-0.1885185,-0.67258525,-0.09029315,-0.37107676,0.5573602,0.5860635,0.19533858,-0.02291404,-0.3701686,0.45404628,-0.06955606,-0.00791154,-0.1694865,0.54717547,0.09593775,-0.71484375,-0.12390266,0.22271216,-0.1796717,0.57472277,0.01065612,0.4734375,0.03168951,-0.10965176,-0.3515157,0.02456055,0.14409392,0.38469237,0.40920928,-0.19245087,-0.03195836,0.03605822,-0.06468342,0.11906905,-0.25774738,-0.05090319,-0.1684283,-0.21625336,0.296875,0.07931696,0.15625392,-0.21626768,0.3936097,0.25293654,0.9270833,-0.12747653,-0.4509844,0.15077838,-0.4543257,-0.16799803,0.18653691,0.10274636,0.27045947,-0.23245302,-0.2771899,-0.5867745,0.2608022,0.2501993,-0.07519951,-0.11297163,0.09395364,0.06908448,0.07178061,-0.18553472,-0.22111239,-0.05663247,0.01573228,-0.29591557,0.28990886,-0.08821615,-0.2285095,-0.19337189,0.22503406,0.36911124,0.03178129,-0.07935692,-0.19141576,-0.13479938,-0.27833614,0.34075,-0.22798929,0.07347725,0.17436154,0.3018313,0.48546362,-0.37490505,-0.2368282,0.33186385,-0.0231277,0.21727695},{0.164023519,-0.162066445,0.0671306401,0.203626886,-0.0834573954,-0.547510922,-0.337932765,-0.173868239,-0.0405189134,0.197227001,0.304654241,-0.466972977,-0.249194458,-0.00461550755,0.465152144,-0.196532294,-0.564116359,-0.212903231,0.0696177185,-0.295879185,0.685032904,-0.4541215,0.332059979,0.211859301,0.0866519958,0.0873656273,-0.256741017,-0.048094172,-0.168966696,-0.0968963206,0.325974762,0.0727409497,-0.0553127676,-0.0185196139,-0.140162423,0.122317396,-0.140650839,-0.159187779,0.0541788526,0.136733085,0.0407477915,-0.315425456,0.154780298,-0.197246164,0.113734022,-0.397476435,-0.0573760495,-0.301870257,-0.493275672,-0.477539062,-0.264713764,-0.394406348,0.765625,-0.107174248,0.285233945,0.118400767,-0.398454487,-0.0383188277,-0.246004686,-0.478610903,0.250585943,-0.044999592,-0.323322624,0.428362161,0.248719797,0.220691502,-0.0861669183,-0.383740574,-0.280384243,0.126961827,0.919921875,0.274287015,0.150460526,0.132762626,-0.0703482106,0.0700964108,-0.259714723,-0.201743305,0.125277668,0.0722990707,0.165584713,-0.307645082,-0.0466570035,0.252987713,0.276371062,-0.441865802,-0.160654798,-0.103995584,0.0707899854,0.680555582,-0.0261059422,-0.223625883,-0.125300914,-0.373764038,0.120645061,0.182097793,-0.0589620844,0.0549260192,0.0673461258,-0.556794822,0.327975482,-0.509620965,0.0442207716,-0.0247968789,0.40797776,-0.0966630802,-0.681818187,0.783547819,-0.207661882,0.024554912,-0.00854067318,-0.319323152,-0.168925911,0.215183422,0.00865916535,0.195344761,-0.0606606416,-0.197305292,0.415063798,-0.869140625,-0.0695602819,-0.135746121,0.377830923,0.305479676,0.181625396,-0.564236104,-0.0322445482,0.177713722,0.29004249,0.362338841,0.0726940557,0.0263543148,0.449250251,-0.373151869,0.0996085629,0.393601954,0.0720430762,-0.593261719,-0.312247634,0.615257919,0.204606503,0.275336385,0.111347452,-0.118144467,-0.0651534572,0.0871723816,-0.199234724,0.128900111,0.0883699805,-0.774414062,0.171353221,-0.380871356,0.357620031,0.405083358,-0.24924466,-0.345720828,-0.0624702051,0.193855867,0.158666164,0.682883501,0.0854322314,0.129382983,-0.186527863,-0.0445614122,-0.263534635,0.0054398044,0.0244481657,-0.280292451,-0.00373796443,-0.0418877453,-0.132315814,0.344735682,0.403872281,-0.0979331657,0.51171875,0.111830659,0.433496088,0.381222755,-0.297761351,0.147017434,-0.000349775451,-0.578369141,-0.237304688,-0.509331584,0.35546875,-0.0799050108,-0.521587193,-0.550436556,-0.134280369,-0.0543412082,0.404960215,-0.284225792,-0.199669734,-0.1484375,0.188490048,0.139148697,-0.150888219,-0.0739469379,-0.0363624431,0.0588514134,-0.332010686,0.311587393,0.261808276,-0.0631359592,-0.191768378,0.0288590603,-0.187506646,0.102739692,0.373877674,-0.00864396989,-0.0252704583,-0.335903674,-0.226594836,-0.268508196,-0.276394606,0.0372061245,0.641276062,-0.754557312,-0.148487672,0.657877624,-0.565917969,0.105008185,-0.0993566737,0.0586113892,0.209950626,-0.516314328,-0.380953282,0.283235043,0.430184066,-0.51940918,0.276282042,-0.0849951059,0.16983594,0.441676974,0.288208395,-0.347696096,0.50390625,-0.106666908,0.0776132718,0.135785669,-0.0261516757,-0.00485623442,-0.0761770085,-0.105967686,0.22752744,0.4034563,-0.315482467,-0.555989563,-0.143066406,0.0518493652,-0.105215169,-0.0631656423,0.00840107445,0.0839615688,-0.0432505831,0.00656222273,0.0466099866,-0.0668915287,-0.164090395,0.138652101,0.237211838,-0.353533208,0.369010419,-0.112505369,0.415992647,-0.121166475,-0.34765625,0.121268138,-0.242205814,0.0879298523,0.74609375,-0.117906079,-0.116239622,-0.272361875,-0.199266925,0.373559982,-0.0632172748,0.213396236,0.245187238,-0.320264876,0.0232225712,0.520774126,0.11130888,0.0596689396,0.289975941,-0.317291379,-0.00551804574,0.157702759,-0.0590987727,0.591889858,0.15332301,-0.108648509,-0.939453125,-0.299667239,-0.431450069,0.256765902,-0.454125971,-0.252914339,-0.313514411,-0.176312849},{0.15821163,0.3661731,0.10569841,0.578125,0.17433852,-0.04718706,0.38559374,-0.06396018,0.00183769,-0.09301199,0.13034339,-0.10789198,-0.45202324,-0.09886702,-0.09763221,0.05066335,-0.07957507,0.02196855,0.02243884,0.1685171,-0.1107948,0.5139844,0.11524259,-0.15820032,0.7994792,-0.37388393,0.10958243,0.0489145,-0.2548933,-0.88183594,-0.1914145,-0.3584692,0.31640625,-0.08176838,-0.12160738,0.21344548,0.16214012,0.3290374,0.18653353,0.64713544,0.3661137,-0.04401974,-0.09812726,-0.02595819,-0.632487,-0.38867188,0.59168196,-0.10719087,-0.13182832,-0.265625,0.21824363,0.27837822,-0.2466013,-0.06735661,0.49809125,-0.21388617,0.2889877,0.23820515,0.27059737,-0.06612818,0.10791375,0.32511425,-0.12742923,-0.34862834,0.4481819,0.11931581,-0.24925616,0.21341044,-0.7213542,0.3739358,0.3105558,0.20701268,-0.7942708,0.41711566,-0.06034051,-0.12841797,0.53428817,0.01300408,-0.15038323,0.15036397,0.5432692,-0.01713418,0.09930568,-0.19146124,0.10449705,0.24221514,0.27539062,1.140625,0.13086072,-0.182147,0.22023788,-0.56434256,0.2421988,0.02949729,-0.11278187,-0.22024852,-0.42740193,0.00586724,-0.09276204,-0.43265823,0.18166845,0.11137519,0.33493334,-0.19049133,0.07614291,-0.3192553,0.20261054,0.03746675,0.2426883,-0.5788086,-0.4471571,-0.36715168,-0.07711753,0.72721356,0.07009196,-0.03183322,-0.7363281,0.08544843,0.4237496,-0.6580729,-0.3427172,0.5894886,0.468471,0.61040294,-0.37501758,-0.3661063,-0.18803567,0.45117188,0.380087,0.24517967,-0.40515226,-0.08223677,-0.21628815,-0.5801711,0.23883994,-0.06884766,0.39476478,-0.28229344,0.63072914,0.853125,0.13036554,-0.42483017,-0.05702138,0.0200985,0.21777047,-0.3789673,-0.06959496,-0.04636808,0.02523397,-0.02967246,0.4500519,0.22124638,-0.08224487,0.30951142,0.44755286,0.34765625,0.00459821,0.16060127,-0.34092677,-0.12984113,0.08055951,-0.05468272,0.07888882,-0.48745728,-0.03431654,-0.78483075,-0.03102203,0.04615992,-0.14701493,-0.00971083,0.04999795,0.37910488,-0.5171274,0.12414167,0.17528924,-0.0486426,0.32908595,0.24015881,-0.04262768,-0.2177758,-0.05649303,0.05984541,0.18063447,-0.19632056,-0.24881831,-0.32909423,0.20938787,-0.36416015,0.03827608,-0.01927948,-0.57243544,0.1605806,-0.5915671,0.08962619,0.28025988,-0.13862722,0.5333252,-0.25293618,0.0444247,-0.0491205,-0.7910156,-0.25882018,0.01772313,0.14165597,0.39272943,-0.36036757,0.05322888,0.33372262,0.29391995,-0.07913042,-0.38778687,0.43658373,0.07908987,0.62907606,-0.33286592,-0.04476915,-0.7322716,-0.01001099,-0.18447608,0.01171587,0.13811035,0.37995258,0.30374712,-0.00309744,0.14356934,0.11913005,0.06472044,-0.24262786,-0.20503217,-0.17241919,0.1962792,0.3104222,0.21390404,-0.12206431,-0.58233964,0.12507208,-0.17236209,-0.90755206,-0.28720328,0.40812942,0.25585938,-0.2319336,0.2959565,0.1513371,-0.31159973,0.12790702,-0.1982398,0.23728906,-0.29195374,0.20854366,0.19246213,-0.09233227,0.04731009,0.35742188,-0.15327458,0.18162298,0.08613409,-0.64397323,0.25056,-0.40224814,0.09253328,0.17485683,0.41721597,0.09596252,0.12743199,0.45291573,-0.17773814,-0.35447106,0.04884036,-0.22164144,0.46446815,0.12439343,-0.08541305,-0.16354135,0.4541275,0.02559807,-0.35731184,-0.7578125,0.05972529,0.05028999,-0.20896529,-0.39625266,0.18753617,-0.25502336,-0.2822074,0.6933594,-0.55646306,0.09475029,0.08768004,0.00852598,-0.20455307,0.05553849,0.03083642,-0.09157006,0.05086083,0.01211548,0.22261646,0.08181283,0.47081164,0.18359827},{-0.353438735,-0.0344019458,0.384477794,-0.152851701,-0.157734841,0.0678738207,-0.131820008,-0.498604923,0.089826487,0.0293349363,0.183545873,0.0392786227,-0.429816008,0.344744861,-0.48066625,0.357421875,-0.268562257,0.464876682,-0.262587607,-0.951171875,-0.00258768094,-0.336027175,-0.587022543,-0.20469296,0.12440709,0.179149538,-0.0681191534,-0.155378759,-0.0983618572,-0.0154404426,0.29211238,-0.607096374,0.148433521,0.122523449,-0.126494825,-0.5078125,-0.079597652,-0.377836376,-0.168438837,0.164969906,0.17481117,0.0175980106,0.595596611,-0.527879894,-0.231021717,0.257849008,0.102039002,-0.0851999745,-0.509887695,0.408439219,0.312277287,-0.118154228,-0.416992188,0.0563120097,-0.390590429,0.244127244,-0.218733445,-0.648697913,-0.574023426,0.199063227,-0.32993719,-0.231965438,-0.159192652,-0.334020168,0.0998453423,-0.576643348,0.302671373,-0.243705779,0.128923938,0.251953125,-0.138627082,0.246591479,-0.197801888,0.0514464602,-0.646701396,0.488722265,-0.76953125,-0.678955078,0.2734375,-0.0360596962,-0.336907029,-0.270364583,-0.555230021,0.592363894,0.643787205,-0.159150288,-0.401475698,0.171900705,0.0533517972,0.0878733173,-0.0441845469,-0.344653934,0.32677424,0.276367188,-0.226129591,0.167947635,0.0445480905,-0.311512798,0.443315327,0.14900203,0.799107134,-0.311477363,0.000828532153,-0.0608728193,0.0814966932,-0.143075392,0.0506339036,1.00097656,0.342690021,-0.118851028,0.221693069,-0.785714269,0.18853876,0.0100420825,0.483282566,0.509635389,-0.465990156,0.0367196612,0.136204645,-0.799479187,0.267562687,-0.244641006,-0.0502639376,-0.0468613617,-0.272373915,0.0229529683,0.318899602,-0.0683712587,0.0117011992,-0.779947937,0.556278944,0.0876223743,-0.245606735,0.0303042736,0.247488841,0.207522735,0.0487531275,-0.163081735,0.400478274,-0.169482052,0.14356032,-0.435677081,-0.9609375,0.0847033784,0.336828053,0.323242188,0.0582397655,0.064714998,-0.249264702,0.297647655,-0.26078698,-0.599871755,0.115730204,-0.0235263053,-0.0121828234,0.149880081,-0.133756354,0.205610797,-0.346714884,-0.0567674562,0.0233990755,0.608774066,0.117170081,-0.91796875,-0.394563019,-0.0112941395,0.0288666394,-0.0712997913,0.138696283,0.645550251,0.128421128,0.000702382124,0.00201265747,0.0185228772,0.0299167205,-0.738991499,0.158150181,0.127462476,0.16407159,-0.0481245108,0.170452684,-0.000149658765,-0.0135106249,0.394502521,0.00325113698,0.576904297,-0.355427861,0.859375,-0.0844610929,-0.104942217,-0.0696095526,0.0203706436,-0.206047744,-0.399152726,0.0136188632,0.115472771,-0.470138371,0.165978685,-0.292860568,-0.0715526044,0.149417728,0.0594195947,-0.052461341,0.46429801,-0.0998456702,-0.032211829,-0.0971992984,-0.24926579,0.641690314,0.00748066604,0.0988753662,0.0294607971,0.0435848013,0.821289062,-0.706054688,-0.129894331,0.438476562,-0.51953125,-0.288062453,-0.184137523,0.359265268,-0.155289546,-0.272414446,-0.205545723,-0.169891074,0.149902344,-0.295953125,-0.179266304,0.355302304,-0.318388373,0.440981656,0.142580569,0.890625,0.849609375,0.0907727629,0.0200075042,0.0279944278,0.676562488,-0.169456452,-0.256819397,0.368109107,-0.712239563,-0.0815719515,-0.410368532,-0.45416075,-0.32122013,0.316453874,0.48729521,-0.186071098,-0.580236495,0.206080317,-0.0827818885,-0.164603412,-0.000455614267,-0.2290373,0.189410999,0.147421196,-0.7109375,0.375703126,-0.0817822888,0.107231952,-0.239733249,0.0954363942,0.268482357,0.539478064,0.367119908,0.585336566,0.3941181,0.177633941,0.198690876,0.103988089,0.39353475,-0.464977533,0.0395507812,0.813476562,0.190406159,-0.0996310785,-0.585248172,0.0541497245,-0.0117746601,0.255760193,-0.0177787375,-0.0387736894,-0.0591992959,0.00170928182,-0.214802638,0.0109162852,0.394419938,-0.00111198379,0.221651375,0.38078329,-0.0602919646,-0.0898713022,0.101313755,0.0285324436,-0.283041984,-0.118685551,-0.0937206075,-0.288732529,0.397502214},{0.386845589,-0.143623069,-0.0200178903,-0.638950884,-0.0124935145,-0.107184842,0.58984375,-0.360252798,-0.573350668,0.00847856794,-0.336874992,0.0278599449,-0.0625777766,-0.189945281,0.429896772,0.0320155956,-0.278301358,0.0316524357,-0.0122388983,-0.850911438,-0.0912710354,0.404249251,-0.150854081,0.188453317,0.140124202,-0.333026826,-0.0396826826,-0.23527281,-0.320248902,0.398393124,-0.366167933,-0.427755386,0.0507774763,-0.0266732853,0.53125,-0.0126127191,0.102777049,0.191834092,0.422781795,-0.653124988,0.249282956,0.293100506,-0.0592050366,0.43754822,-0.149418816,-0.0647009984,0.0154315718,0.123559922,0.0176296066,0.225608066,0.118637457,0.627197266,-0.398363084,0.176685125,0.0401504748,-0.156235993,0.160177484,-0.151844829,-0.0237992778,0.118387967,-0.00788140018,-0.0141496453,0.0456522368,-0.466844499,-0.103242002,0.0898219422,-0.315327376,-0.0419500954,0.0252830703,-0.380126953,0.334927529,-0.105696723,-0.147472814,0.172334805,-0.207492754,-0.141601562,-0.500274122,-0.130885378,0.00876363087,0.495186955,0.1738666,0.427951396,0.122099593,0.0776473358,0.166062817,0.249261051,-0.334909528,0.412949324,-0.46295166,-0.297866583,-0.0698565245,-0.0754699185,0.352584481,-0.0731508434,-0.216822401,0.470548928,0.353337407,-0.193300784,0.492374778,0.0599218458,-0.138217941,-0.0030898042,0.505896211,-0.34077251,-0.131818146,0.674913168,0.272418141,0.104230732,0.206052333,0.415562719,0.0258121192,-0.67578125,0.0523704961,-0.129907414,0.013680594,-0.330057025,-0.268550664,0.776367188,0.0213922244,-0.282209426,-0.0444631241,0.361095607,0.00859896559,-0.0229009017,-0.166404977,-0.28612408,0.0484176874,0.564691305,0.155218542,0.0783546269,0.22990185,0.121815734,-0.108616717,0.294047683,0.0571133979,0.0803024694,0.496754795,0.1738161,-0.155229896,0.926432312,-0.713169634,0.373803705,-0.360227466,0.102550335,-0.0556957535,0.442442358,-0.000643471372,-0.151297644,-0.431834638,-0.0498240627,0.778702438,-0.396401942,-0.650334835,-0.372971743,-0.677083313,-0.213395134,-0.151855469,-0.600725472,-0.0842018574,-0.237256244,-0.194370717,-0.0110025825,-0.248021841,-0.58984375,-0.0637042597,-0.0922858194,0.437400699,-0.314453125,-0.689732134,-0.263679475,0.404144287,-0.171913043,0.0844586268,0.179710284,-0.597482622,-0.168936104,-0.196374565,-0.499308527,0.26473546,0.00169713865,0.139169633,-0.509858608,0.336999714,0.367030352,0.114736684,-0.537642062,-0.199701741,-0.0939855501,-0.0798344612,0.49853912,0.0957498848,-0.0244386401,0.615017354,0.35048753,-0.138714328,-0.12797381,0.0922355279,-0.142568365,-0.255859375,-0.306640625,-0.568292022,-0.0639587492,-0.397451639,-0.497430086,-0.313471287,-0.208005697,-0.432508677,-0.0467422158,0.145071805,0.363405257,0.0530091152,0.260791421,0.220265105,-0.390583009,-0.150427938,-0.00483362144,-0.302776068,-0.545089304,0.140603721,-0.0569081642,0.429752618,0.415944874,-0.120792426,0.435452759,0.0336570852,-0.295869887,-0.149408996,-0.381915659,-0.19824937,-0.180110961,0.0810440257,0.0224188492,-0.642361104,-0.58742559,-0.243467137,0.572088063,-0.292104632,-0.264655352,-0.298655778,-0.0720107779,0.662259638,0.273360074,-0.0430231355,-0.00254737865,-0.0890805796,0.0194536485,0.218307137,-0.449765623,-0.337030828,0.78515625,0.0128164813,-0.189941406,0.47913602,0.206087366,0.0676352605,0.255893648,0.250544429,0.31628418,0.00981479604,0.240689546,0.00682799285,-0.185546875,0.404205322,0.14156574,-0.160095647,0.51171875,0.134770513,-0.0815409645,0.0575924776,-0.232900545,-0.384755492,-0.167475179,-0.503427923,-0.0793256164,-0.609933019,0.0373578258,-0.650815189,0.104290739,-0.056408111,0.174274653,-0.243174344,0.00587918144,0.157743409,0.133778602,0.433515638,-0.0185143426,0.0710784048,0.51953125,0.370184541,0.495905936,0.0767083913,0.222665951,-0.691210926,0.288058549,-0.0621173866,0.14453581,-0.0233430285,0.0575047359,0.159194708,-0.636230469},{0.492145032,-0.13220787,0.232386842,-0.120534346,0.130786359,-0.776475668,-0.137728423,-0.124157414,-0.12301252,0.0249900408,-0.0208512936,-0.699908078,-0.286114514,0.683723986,-0.0685919896,-0.107016064,0.145500571,0.38868472,0.0851410329,-0.079587236,0.300700754,-0.148412362,0.30859375,-0.338774443,-0.226529494,0.21088995,-0.161594331,-0.0169510562,0.122074895,0.0795650929,-0.344759107,-0.0605074652,0.578354776,-0.237304688,-0.0678766072,0.411811441,0.499192715,-0.196669251,0.0133242365,0.408171624,-0.175887078,0.150452435,0.118688487,0.148911968,0.413791239,-0.25390625,0.51171875,-0.183566064,0.44073534,0.0760112181,0.341696709,0.173814401,-0.17577906,-0.240660191,0.093541339,-0.0275494661,-0.100591078,-0.576441288,-0.231949553,-0.568300188,-0.470703125,0.149330273,0.576171875,0.0938083008,-0.589192688,-0.529427111,-0.124230586,0.0234232731,-0.0964020863,0.635516822,-0.0798678622,0.1767032,-0.174313873,0.359432012,-0.227994636,-0.375964403,-0.65234375,-0.168941647,-0.0691153258,-0.505689561,-0.212953314,0.260685623,-0.176827058,-0.164576977,0.0993377194,0.135219395,-0.184105933,0.225551426,0.149889946,0.539824724,0.0497981347,-0.144523188,-0.0183254052,0.325177699,0.485443681,-0.349519372,0.0541119687,-0.187480316,0.377799928,-0.228522897,-0.346611142,0.0336925536,0.358302683,-0.149374932,0.0931839794,-0.209934086,0.546936989,0.643663168,0.409145415,-0.0415873677,-0.100541718,0.248922914,-0.114464164,0.661376953,0.564522862,0.220249727,0.0389760062,-0.142087936,-0.0355472416,0.0617180765,-0.582643986,-0.390729994,-0.0229164753,0.264599115,0.579927862,-0.437853217,0.21556513,-0.227971718,-0.310429484,0.00866281614,0.148942932,0.513731062,-0.561859608,-0.0720382184,-0.140605733,0.313442081,-0.476225764,0.000486344448,-0.172301933,0.673828125,-0.151847243,-0.360377401,0.0385552384,-0.674218774,-0.525468767,0.104242899,-0.35939911,0.597404242,-0.344601363,-0.666927099,0.188003078,0.179784343,-0.0874115229,0.00368078589,-0.288028479,0.608072937,0.647395849,0.104232416,0.039383471,0.265596956,0.27538231,0.338910103,-0.672363281,-0.0708079189,-0.779687524,-0.725142062,0.107910156,0.140633881,-0.350682348,-0.422829866,0.378601879,0.239276156,0.222174704,0.265625,-0.330158979,-0.0564863384,-0.08522854,0.454101562,-0.325356156,0.0557622463,0.107400045,-0.397251248,0.0331830829,-0.0201722309,0.21191071,0.509765625,-0.411172956,-0.299684435,-0.0995728448,-0.25773111,-0.0773973912,-0.0681238249,-0.401262909,-0.104958788,0.0398098007,-0.11330235,-0.118690491,-0.498786688,-0.0912723318,0.187023133,-0.273528188,-0.123903655,-0.489470094,0.0830098465,0.359332234,-0.315372765,0.0609355904,-0.576171875,-0.316389591,0.0589002743,0.647135437,-0.273301721,0.209453121,0.0245447401,0.00294795074,0.183591291,0.158210218,0.0985439718,-0.124155991,0.103248671,-0.0322742723,-0.0642139688,0.0124948556,0.486493647,0.375968754,0.161623999,-0.313467592,0.392690808,-0.303850442,0.459095985,-0.206592292,-0.442098498,0.183989778,-0.028753683,-0.227932185,-0.704101562,-0.468242198,0.452864587,0.209458858,-0.174790069,0.0487885065,0.173284769,0.0351530463,0.362255037,-0.014517705,0.0247645751,-0.336940467,0.2578125,-0.00209512748,-0.54675293,-0.0119864782,-0.198196068,-0.0944434702,0.00871779397,0.163592398,-0.20312655,-0.0644631982,-0.403211802,-0.173349813,-0.0768828839,0.224157631,0.312575132,0.0434479006,0.0479645319,-0.0922635347,-0.240293369,-0.0423550494,0.0661412254,-0.0705452487,0.00663741445,-0.00254241005,-0.186613575,-0.133302078,0.331014544,-0.296595991,0.270454288,0.526494563,0.205716833,-0.0626807287,-0.236366168,0.363907725,-0.0132301887,0.472905189,0.40348801,-0.799479187,-0.783511519,0.192804128,0.55078125,-0.103525147,0.0133684576,0.318569899,0.090136148,-0.0509325042,0.505533874,-0.232375816,0.084014073,0.350571156,-0.407090306,0.445041239,-0.0276332907},{-0.374936998,0.336908787,0.350722432,-0.00657655718,-0.382837027,0.0157949738,0.249258265,-0.244605765,0.0516444482,-0.166937664,0.21289438,-0.0900423154,-0.82421875,-0.173764825,-0.161677346,0.0610456318,0.105706707,-0.293042928,0.500946999,-0.54527241,0.0534724146,-0.19919093,-0.320127577,0.0450187437,-0.126955986,-0.0981147438,-0.599731445,-0.0962015763,0.29401961,-0.203096852,-0.0446235873,-0.489430159,0.035146419,-0.511371553,-0.678571403,-0.247020438,0.129893616,-0.185508251,-0.307317138,-0.417005211,0.584037185,-0.278256565,-0.0286883507,-0.492686182,-0.0379735492,-0.6328125,-0.409087569,0.416672915,0.22216931,0.311576694,0.378230155,-0.0457881913,0.258731157,0.0935633257,0.427525103,0.312553912,0.0251407605,0.312320411,-0.094247967,0.410023838,0.00720492285,0.170842841,0.488342285,-0.368275821,0.0470211767,0.425025195,-0.64855957,-0.0673958063,-0.375847876,0.346758544,-0.311480969,0.0678565279,0.341835558,-0.209947601,-0.175790772,0.209923223,-0.203971937,0.0442888141,-0.0367157981,-0.694878459,0.475120902,0.195272326,-0.506233394,-0.49609375,0.213384628,0.0170125924,-0.0392071046,-0.0734606311,-0.137743503,0.270417601,0.248740435,0.151876703,-0.8671875,0.210904732,-0.20167093,-0.0724856406,-0.484459907,0.647135437,-0.113074668,-0.816080749,0.280265749,0.0386239067,0.0263999756,-0.0974010974,-0.00615921291,0.520559192,0.124004535,0.610916913,-0.0166708436,0.400183469,0.432347089,-0.0930006057,-0.278235406,0.244628906,0.708233178,0.00991359074,-0.104707107,-0.231498972,0.44339323,-0.187519476,0.230020851,0.171895683,-0.131369039,-0.472750753,0.105225854,-0.0859424844,-0.149414062,0.36117062,-0.111138709,0.209920242,0.442099303,-0.345703125,0.0341009907,0.0124407625,-0.289984107,0.244043559,0.29001686,0.614062488,0.379891604,0.5234375,0.19141221,0.0661652908,0.344815344,0.619791687,-0.0903358757,-0.592656255,-0.0883880779,-0.106222257,-0.615306735,-0.0345605351,0.265625,-0.117665134,0.285049438,-0.105769731,-0.280249417,0.333984375,-0.719835043,-0.135273784,-0.107634835,-0.552966118,0.162619069,-0.23680307,0.0839704052,0.192340225,0.0781127959,0.178267047,-0.154350221,-0.336885333,-0.0698280707,0.784505188,-0.179690823,0.074749276,-0.609095991,0.185553223,-0.994140625,0.11668241,-0.152898222,-0.0673473924,0.65234375,-0.2900877,-0.626420438,-0.333984375,0.531616211,-0.320337027,0.0496664308,-0.660481751,0.434147626,0.10934554,0.276392221,0.388898969,0.0313466378,-0.471151829,-0.023866687,0.00394428102,0.30078125,0.488145381,-0.443067521,0.306631863,0.0217795912,0.193851516,-0.514105916,0.286141932,-0.0143571785,0.393516392,-0.0217097364,-0.635995388,0.276393801,0.278157562,0.100366212,0.411164314,0.41423741,0.0111693516,0.0492112003,0.11253608,-0.0162745658,0.661658645,-0.0133951064,0.0216612928,-0.666165888,-1.00390625,-0.498560846,0.498432368,0.78515625,-0.369854659,-0.578125,-0.320104033,0.44619,0.587094903,-0.165027842,-0.0466061644,-0.0115379887,0.446194559,0.373247206,0.14991197,0.91796875,0.157253683,0.360357285,-0.0798283368,0.393610805,-0.168559372,0.191422641,0.75,0.303746343,-0.143579602,-0.43939209,0.9296875,-0.441177696,0.343736768,-0.364138365,-0.0639290512,0.270487875,0.373266935,-0.227474809,0.0484793968,-0.0961661935,-0.165545136,-0.0502812378,-0.246585578,0.23389031,0.0491510667,-0.256858647,0.559751153,0.000418684183,0.021318445,0.404256612,0.418865263,0.418789059,-0.00251090364,0.0625729114,0.142620161,-0.182178989,0.210985661,-0.0445671976,-0.387758732,-0.512109399,0.0321864113,-0.303644717,0.109595172,0.126965836,-0.271739125,-0.042607259,0.648871541,0.122778356,-0.117484368,-0.367143601,-0.251953125,0.904296875,0.331168473,0.436660349,-0.684895813,-0.0795839578,0.0993640199,0.213370115,0.143553033,-0.497590303,-0.363602787,0.0770791993,-0.211902037,0.0497586057,-0.422515363},{0.0717390627,0.020275332,0.593979776,-0.341609061,0.18164514,0.676081717,-0.0360818133,-0.650195301,0.159170181,-0.12527442,-0.456093758,0.294628918,-0.0308026746,0.178674966,0.0796230286,0.111569665,0.125996292,-0.349179685,0.0181781836,-0.229471847,-0.481020719,-0.0815531984,0.418988615,0.708007812,0.15472953,-0.134765625,-0.0593058504,0.391571969,0.637251437,-0.225022316,0.260797471,-0.307510823,-0.366114169,0.325137854,0.276454002,-0.102036737,-0.0644031838,0.21101734,0.814453125,-0.473054111,0.000636423996,0.0937418714,0.220727682,0.129892647,0.583059192,-0.103244908,0.161158219,-0.237242118,0.0460292026,-0.213753045,0.20403181,-0.610076129,-0.0981292427,0.301757812,0.316322416,-0.0879123285,0.109363541,-0.0182295032,0.612500012,-0.315475106,0.371302336,0.0785813034,-0.228521302,-0.414136559,0.00113458023,0.213336527,-0.395634651,-0.0888531283,0.134247899,0.158671871,-0.268542469,-0.0107502695,0.433671862,-0.0426001363,0.0627874658,0.0401537642,-0.697998047,-0.3203125,-0.571180582,0.419903785,0.0197976828,-0.569921851,0.223263711,1.0703125,-0.135724023,-0.423038572,0.247704849,0.615234375,0.118626773,0.428109974,0.00579917058,-0.0800667107,0.233511329,-0.154727295,0.132789195,0.0844514295,-0.363507688,0.24554792,0.0241840295,0.0837318152,-0.084010981,-0.637920678,-0.246587843,-0.0107288724,-0.653808594,0.0407686047,-0.258839637,-0.189966723,-0.0822767094,-0.106937364,0.0897867978,-0.0159415286,0.470788032,0.521739125,-0.095236741,0.164044946,-0.314289123,-0.316263199,0.597222209,0.0351439565,-0.224594623,0.712890625,0.0671612695,-0.0869034454,0.424733222,0.0817477107,-0.0922741741,-0.0192668308,-0.059062615,-0.000835116254,0.142115325,-0.445982128,0.237716854,0.101564936,-0.766601562,0.0467690565,-0.275390625,0.084234938,0.217717841,0.0580950454,0.153806642,0.186537459,-0.151375443,0.0795662403,-0.0270310659,0.529331148,0.00458025234,-0.378823727,-0.136222824,-0.00833704416,0.5234375,0.0983570889,-0.139147431,0.527093768,0.289002419,-0.0815429688,0.052866634,-0.53688401,0.218275338,-0.621383131,0.0612609014,-0.341927081,-0.12744765,0.133801788,0.0995790213,-0.0773546249,-0.575954854,0.186155111,-0.640950501,0.318359375,0.212431297,-0.134277344,-0.0390013978,-0.0340410657,0.350437343,0.158665061,-0.309420079,-0.165041387,0.12744008,0.0623223409,-0.772879481,-0.0729754791,-0.050646808,-0.117253892,0.445080787,-0.227937028,0.283162266,0.353432864,-0.0130889006,-0.0756566748,0.132280305,-0.118866019,0.0869399607,0.107696846,0.0918435752,0.249201387,-0.103788048,-0.223205119,0.378636867,0.201125845,0.388801426,-0.214698181,-0.445251465,0.268618256,0.0388198197,-0.614872694,-0.264602363,-0.242734566,0.8203125,0.188428491,-0.82421875,-0.523334682,0.649338961,-0.168390989,-0.647321403,0.142071754,-0.0851831883,0.393677503,-0.634440124,0.0878759921,-0.192456424,-0.344754994,0.00488948729,-0.0375296101,0.479291141,-0.0217397679,-0.0633832812,-0.064677909,-0.294020444,0.388629109,-0.24808757,-0.226499498,0.207099974,0.108641632,0.0494384766,-0.365364581,0.24216029,0.0582336821,0.0114776818,-0.271476656,0.0440703891,0.349342108,0.0705796331,0.0276017692,-0.249212697,0.17044431,-0.148926914,0.456227034,-0.306640625,-0.18361786,-0.56161797,0.277391374,0.0129894763,-0.25663358,-0.11087957,-0.155258685,-0.400442034,0.272442847,-0.096619986,0.345468014,0.0822739005,-0.213891,0.0238480866,-0.520733178,-0.209912434,-0.140466928,0.0827829093,-0.138173491,0.0403843895,0.328024834,-0.799804688,-0.261624992,-0.226502165,0.0636913776,0.027392339,-0.266695589,-0.441313803,0.129855469,0.113248147,0.131363034,0.434662431,-0.0854377523,0.0155746397,0.0141560556,-0.482552081,0.190344021,-0.666852653,-0.0263971146,0.671595991,0.03458694,-0.368269444,-0.593424499,-0.817708313,-0.772135437,0.159656227,-0.474689096,-0.173860967,-0.19437398,-0.244583085,0.206071869},{0.341702372,-0.060318619,0.10104578,-0.0524432659,-0.471920669,-0.239222929,0.014791185,0.17726025,-0.0688385069,-0.33214891,0.176767573,0.179132909,0.090641804,0.331038356,-0.0122924382,-0.230425209,-0.114468031,0.356346428,0.0742052794,0.253790319,-0.391631156,0.266663074,-0.387991577,-0.0734508783,0.00443839608,-0.0688304454,-0.166493565,0.029947916,-0.6640625,0.123889707,-0.482265621,-0.224535242,-0.699776769,0.236824811,-0.0580142401,-0.997395813,-0.0165379867,0.647460938,0.0179453846,1.015625,-0.0773605406,0.13868086,0.0405223183,0.151359543,-0.0480064191,0.020528052,0.407209426,0.0503327809,0.0556721129,-0.659375012,-0.135253057,-0.227002487,-0.47480619,0.0328314789,-0.263602108,0.0698789284,0.193355888,0.0023829781,0.299845368,-0.00607116148,-0.288028091,0.620239258,0.248830542,-0.24319458,0.623131812,-0.189426556,-0.325158387,0.000236937383,-0.190979451,-0.141041741,-0.41169706,0.0735082105,0.0599127561,0.206062347,-0.0145757599,-0.0895652622,0.46472168,-0.14010109,0.13469626,0.0649399161,-0.0734672919,0.689843774,-0.167482153,0.178129032,0.338978797,-0.183622837,0.177737549,0.00690113893,-0.0664553642,-0.0843291283,-0.36328125,-0.403295279,-0.193834692,-0.0383458398,-0.132333741,0.287137002,0.401304841,-0.60089761,-0.260758728,-0.658528626,0.0449177735,0.347558588,0.246147022,-0.117652737,0.577790201,0.111545585,-0.648046851,-0.0937744156,-0.227325752,-0.176261976,-0.344792396,-0.0489435531,0.364413172,-0.802734375,0.401410282,0.338787138,-0.90234375,0.265625,-0.0160033014,0.149392739,0.0632411093,-0.09916199,-0.00030510503,0.104482047,-0.133828387,-0.994140625,-0.0370753892,0.305668324,0.194344386,-0.467773438,0.201221153,-0.336792797,-0.287109375,-0.244638577,-0.204606116,0.016521059,0.315476179,-0.311499327,0.570052087,0.515625,-0.380208343,0.00858484954,-0.203043237,-0.205509901,-0.0602856725,-0.229918882,-0.0111092739,0.0996299833,0.467921406,-0.418919384,0.149896681,-0.0178623646,-0.3359375,0.249242425,-0.157204986,-0.234816894,0.0302520134,0.380600125,-0.0944667608,-0.537265599,-0.201208785,-0.0900994316,0.687669814,-0.148383006,0.156235814,-0.0302510839,-0.101033159,0.0722239539,0.148445189,0.172807083,0.204058349,0.246538892,-0.452376992,-0.767578125,-0.118863337,0.370876729,0.870117188,-0.5078125,-0.125754058,-0.479537606,0.57536763,-0.133793607,0.41287747,0.0761116222,0.245966002,0.384836644,-0.159198225,-0.116695523,0.579653561,-0.167443544,0.382962734,-0.234422013,0.76171875,-0.170927927,0.234358355,0.0559522994,0.118420504,-0.558910489,-0.243263945,0.0989090428,0.410006016,-0.684570312,-0.222636908,0.0219616666,-0.249328613,-0.572516024,0.853515625,-0.0535717607,0.252026141,-0.331054688,-0.51171875,0.0229958445,0.1860383,-0.0912699699,-0.0211589038,0.291015625,0.00152136502,-0.100804225,-0.544921875,-0.10958223,-0.509807169,1.0625,-0.445839524,0.340849549,-0.875,0.102774985,-0.0954679251,0.19774583,-0.142550156,0.474416465,0.392629534,-0.245500207,0.119332507,0.427517354,-0.414913058,-0.265607446,-0.00476361532,-0.344630599,-0.319421262,0.622514188,0.421987057,0.26366353,-0.445352346,0.319402814,-0.11009445,-0.158211559,0.189879477,-0.232367888,0.092515789,0.458776593,-0.451100409,-0.401169628,0.756250024,0.0788782462,0.478808582,0.287124395,-0.328125,-0.208903,-0.0211744364,-0.625205576,0.121566705,-0.441853851,0.291956455,0.260815442,-0.477284312,0.618977845,-0.00788589194,0.260667056,0.108597137,0.42743957,0.0218358003,0.499372214,-0.315392613,-0.197296843,-0.164988503,-0.725000024,0.073490113,0.776367188,-0.0331833959,-0.149967819,0.29595226,-0.0520188361,0.601855457,-0.0473989211,0.0136279901,-0.381763607,0.264698505,-0.20310697,-0.341884315,0.779947937,-0.0378375165,0.379894882,-0.0175371412,0.638237834,0.767968774,-0.322273791,0.334093809,-0.332980543,0.203174502,0.0790753439},{-0.05205134,-0.08618607,0.5174386,1.015625,0.16659741,-0.37284806,0.09572101,-0.48560014,0.06984556,0.06441669,-0.04699615,-0.41893074,0.22802338,0.49853516,0.11717536,0.48922253,-0.51036006,0.11891142,0.10299393,-0.04965148,0.04858677,0.3514815,-0.0278856,-0.04688523,-0.18747146,-0.4823384,-0.5136719,0.06196343,0.2167798,-0.4228996,-0.35849035,0.3076386,0.08276775,0.21537554,-0.54858994,0.11181751,-0.14649284,-0.24655184,-0.07833272,-0.04916694,0.7766927,0.13187754,-0.17517732,-0.40255377,-0.25492436,0.3491107,-0.16504847,0.465625,-0.34384048,0.33881655,-0.08350597,0.31920856,0.0542461,0.24367686,0.01067238,0.2129847,0.27429652,-0.10793061,0.18843378,-0.359375,-0.2763335,-0.4717285,0.21972173,-0.20898896,0.8203125,-0.09006406,0.25969735,0.5987956,0.09543887,0.6927083,0.3839204,0.7682292,0.3329497,-0.41695064,0.3231231,-0.7571331,0.09358951,0.3956839,0.07007954,-0.30958828,0.20115735,-0.2607764,-0.73339844,0.37283325,0.43662396,0.41700912,0.42107078,0.13425866,-0.1748205,-0.08882522,-0.19727969,-0.124153,-0.24564198,-0.7,-0.33494738,0.37273848,0.39253765,0.22415693,-0.20714456,-0.19091384,-0.16112037,-0.00792799,-0.00802841,-0.48863345,-0.42419854,-0.327049,0.189491,-0.17575443,0.5640191,-0.2446528,-0.14744997,-0.15868896,0.1611682,-0.09154364,-0.07248054,-0.18941544,0.19434564,0.04601957,0.10321932,0.46986178,-0.13431728,-0.21085514,0.11820603,0.3866984,-0.43707874,-0.10080207,-0.72935265,-0.21632893,-0.14210522,0.18654715,0.05875225,-0.32715437,-0.00358641,-0.0048114,-0.01553684,-0.13369693,-0.03396657,0.18699007,-0.26470527,-0.2754249,0.6209077,-0.20704766,0.21047512,0.11059133,-0.20946091,-0.2742885,-0.03078672,-0.19383636,-0.38185415,-0.34472236,0.29584032,-0.14892308,-0.01231363,-0.32413077,0.6588542,-0.18265451,-0.18701726,-0.0778795,0.0213009,-0.26171875,0.1261853,0.21922612,0.2647335,0.61328125,0.6286765,0.0737471,-0.37740138,-0.7402344,0.12538208,-0.11131112,-0.24511985,-0.10960438,0.01811101,0.03221093,-0.33884642,-0.19237524,-0.04024095,-0.4582504,-0.5252251,0.06662653,-0.47871378,0.03640763,-0.00885806,0.1992117,0.23048475,-0.01271795,0.12031766,0.15193422,0.06215717,0.1347374,0.28024444,-0.13523996,0.26851916,0.62109375,0.29384068,0.14752719,0.02445674,-0.01118272,0.12130383,0.34356916,-0.03797073,0.2372783,-0.29785493,-0.36502165,-0.5529785,0.2803442,0.13081317,-0.18454522,0.15874664,-0.05196024,-0.05623407,-0.7242187,0.43668377,-0.6237793,-0.3700284,-0.475698,-0.00297212,-0.18116379,-0.60546875,0.55125,-0.246563,-0.02919403,-0.47070312,0.7523438,0.4236181,0.34480408,-0.35030934,-0.0132987,-0.4448667,-0.29580614,-0.06903203,-0.03995828,-0.24312744,0.45297852,0.27631962,-0.31541872,0.66015625,-0.09203543,0.14503546,0.48326823,-0.09816173,0.22206624,0.24501538,-0.04769547,0.00942977,-0.63921875,0.14492522,-0.25585002,0.35256347,-0.09059312,0.37229702,-0.54473037,0.1430504,0.24608943,0.31928086,-0.44914564,0.30552885,0.19429739,0.10937653,-0.3330136,-0.00815076,-0.7734375,-0.5255153,0.02965141,-0.07125572,0.10499003,0.20953059,0.11524211,0.11451261,0.149401,-0.25195312,-0.20806605,-0.44325522,0.06859116,0.5799479,0.14253546,0.0620931,0.61360675,0.16249838,0.07838167,0.38790026,-0.10983206,-0.04758019,0.77734375,0.00900354,-0.16603184,0.05879058,-0.453382,-0.31900737,0.8094952,-0.21092217,-0.01657582,0.3421875,0.17284176,-0.40315756,-0.01353906,0.12224954,0.6673177,0.29586306,-0.00224627},{-0.03541893,-0.31711832,-0.35443795,-0.14493601,-0.56255746,0.01093874,-0.20453489,-0.9238281,0.06518351,-0.01023558,-0.38977864,-0.10375248,0.02317352,0.23536754,0.23373999,0.296875,0.55484694,0.07665534,0.32913643,0.03089158,-0.6501116,0.10052048,-0.11979985,-0.28033775,-0.00764379,-0.5620888,0.0087628,-0.13468392,0.02052583,-0.58066404,0.21715038,0.23335515,-0.06395768,-0.06091546,0.39467368,-0.72699654,0.24219629,0.22716087,-0.02831344,-0.1825574,-0.07229766,-0.40824044,0.75799006,-0.696875,-0.17678365,0.04864105,-0.15672784,0.66015625,-0.16603853,-0.11497577,0.12481768,-0.26955044,0.31535855,-0.3661613,-0.08714277,0.09666441,-0.11621255,-0.05406592,-0.35361034,-0.14300624,-0.2207286,0.12529996,0.36535773,-0.32617188,0.29396355,0.06940918,0.06146869,-0.36323118,-0.34960938,-0.20643136,0.41805327,-0.23582198,-0.4979285,-0.29397726,-0.27734375,0.06346954,0.02576061,-0.08448606,0.08567918,0.85546875,0.5662109,-0.45285562,0.6276042,0.34762794,-0.0951387,-0.09253587,0.07298866,-0.3068279,0.39275897,0.3269857,0.16298167,-0.11941871,-0.34960938,0.3680977,0.00941583,0.00704709,0.23529522,-0.871875,-0.00717719,-0.41514933,0.22693254,-0.7106585,0.03318122,-0.4100507,0.3642915,0.44960937,-0.35637018,0.57130986,0.22267602,-0.05567664,-0.12128587,-0.49841452,-0.05682727,-0.2080187,-0.37879464,0.09033719,0.33701834,0.4232395,-0.07251097,0.7529297,0.19032776,0.9394531,0.36196056,0.35831404,-0.13915277,0.35339135,0.33398438,0.3154352,0.5488281,-0.66132814,-0.22555837,-0.2977409,-0.29395452,-0.1494013,-0.2492625,-0.18021612,-0.6204928,0.5706676,0.22454458,0.08202551,0.02029557,0.25284225,0.12418491,-0.1670425,-0.20320012,0.36610505,-0.13423213,0.39356098,-0.00554287,-0.60339355,0.1928931,-0.09959179,-0.8157169,0.03454037,-0.05675073,-0.06416837,-0.21583337,-0.34371603,0.78515625,0.15133077,0.45214844,0.3524588,0.1669197,-0.05211684,-0.4501953,-0.20998938,0.24118544,-0.54466146,0.10516827,0.06163391,-0.0633357,0.05016329,0.07270556,-0.5963542,-0.02719579,-0.22462864,-0.49603456,0.05298163,-0.00938419,0.2290343,-0.8079928,0.11621683,0.39153856,0.16650502,-0.06395346,-0.19429296,0.39306208,0.25495794,0.21538037,-0.32698384,0.03664848,0.71796876,0.14601512,0.33109662,0.09640975,0.22164525,0.2784352,0.18003595,-0.69835067,0.07028925,0.16701864,-0.2227067,-0.15384461,-0.30766368,0.196706,0.5917969,0.1601948,-0.44350013,0.49503228,-0.45204988,-0.34474003,-0.00719951,0.57883525,0.20603496,0.5083452,0.8489583,0.18451205,0.24967727,0.05834028,-0.08294027,0.08568914,0.15235624,0.34195313,0.35633838,-0.00198948,-0.28125,-0.39450622,-0.13229048,-0.01709457,-0.35741186,-0.03580917,-0.40211502,-0.33299497,0.36420572,0.22808182,0.23686925,-0.02546118,-0.35239956,-0.09743078,-0.24563545,-0.4653152,0.71875,0.1581839,-0.808364,-0.0511234,-0.00822921,-0.24883309,0.87890625,0.07635288,-0.40214446,-0.07935931,-0.52734375,-0.06762785,-0.36534926,-0.00441159,-0.49939272,-0.10207319,-0.1791787,0.03536882,0.29960293,-0.12010505,-0.56640625,-0.23633142,0.29778787,-0.34661812,-0.00792148,-0.38952872,-0.06043424,0.5387835,-0.09813956,0.3894531,-0.10716593,-0.30568162,0.40140405,0.37698534,-0.02277702,-0.22548416,0.33501324,0.01571129,0.42082164,-0.08155815,-0.3223623,0.34165472,-0.29200304,-0.33755717,0.30455124,0.14060883,0.03944775,-0.16404058,-0.49906993,0.25490686,-0.4864502,0.3299956,-0.7271205,-0.25295794,-0.01860048,-0.09645239,0.1308688,-0.07719736,0.10007202},{0.0251533333,-0.11355228,-0.0676191375,0.39265731,-0.226582035,-0.186553448,0.752604187,0.225067928,-0.0108144488,-0.294741035,0.288041562,-0.045319777,-0.0155645423,0.0627832934,-0.0527682379,0.694475472,-0.0103719337,0.448277831,0.37023133,0.198120952,-0.174270004,-0.0698270425,-0.489961833,-0.407999068,-0.0732532814,0.260717154,-0.670454562,0.0703035221,-0.017701501,0.0172773972,-0.0621973313,0.090564616,0.294921875,0.521369457,-0.0273911692,-0.0603243932,0.232464209,-0.579337299,-0.470069677,0.0686277151,0.101578757,-0.203598946,-0.111329734,-0.0126734059,0.0844966695,-0.453026116,-0.230453685,0.0671164766,0.61704284,-0.411207944,0.0320144147,0.000211238483,0.156258598,-0.0178651921,0.0353912003,0.101315975,0.0836914033,0.332074642,-0.303537041,-0.0851766169,-0.19141303,0.760653436,-0.331084281,-0.219684198,-0.248807982,-0.609700501,-0.921875,0.564453125,0.0568826497,0.556046188,0.8125,0.327160358,0.703125,0.0790980756,0.000413686445,-0.83203125,-0.110160664,0.195750058,0.0299134981,-0.26858595,0.399832577,0.0803697631,-0.480603456,-0.3046875,-0.0670922101,0.0047802995,-0.0603846796,0.0268796291,0.782226562,-0.475341797,-0.0599642284,-0.384937227,-0.0710582808,0.94921875,0.0859321654,-1.1171875,0.337841809,-0.225631595,0.216777608,0.202757627,-0.234811157,-0.42170918,0.451065719,-0.0371231437,-0.0727436692,-0.717447937,-0.011473312,-0.237247497,-0.421082437,-0.0158208851,-0.754557312,-0.24925907,0.228505507,-0.433203131,0.0893246084,0.154300898,0.41609481,-0.0752371475,-0.200759247,-0.159249872,-0.274487019,-0.104216419,0.306571364,0.41693607,0.260763645,-0.011729314,-0.00480811717,-0.538832724,-0.00643396797,-0.245129585,0.345741421,0.0795995817,0.169972017,0.121878006,-0.276336908,0.0517668277,-0.303797871,-0.634232938,-0.552343726,-0.183196768,0.0886193886,0.00376770925,-0.321267843,-0.787109375,0.639322937,0.213843688,0.108196877,0.200209752,-0.103996918,-0.247041583,-0.114117675,-0.0947570428,0.210112408,-0.271452516,-0.0342162959,0.45880127,0.00962542091,-0.375101715,-0.245196074,0.112135008,0.400331438,0.311475277,0.537141383,-0.0574702062,0.357508302,0.506944418,0.00677180011,-0.0114608966,-0.0805550665,-0.0663998947,-0.360292375,0.79296875,-0.3125,0.118606277,0.024506025,0.0434587225,-0.0217288658,-0.834375024,-0.488512546,0.634982646,0.161596119,-0.363153189,0.8984375,0.193365946,-0.718098938,-0.147421673,-0.0757337511,0.449251294,-0.571841061,0.271484375,-0.065216653,-0.204583332,0.205552891,-0.438281238,-0.060213957,0.119891673,-0.356555462,-0.631510437,0.523207724,-0.252938747,0.0769228637,-0.231864542,0.127918392,-0.274235338,-0.371320188,0.18357183,0.0391677171,0.0626069009,0.138690859,-0.0959207863,-0.117654987,0.166067749,0.534722209,-0.588309169,0.689453125,-0.634548604,0.0854637474,0.0372360721,-0.564583361,-0.87890625,-0.237343103,0.0707984194,-0.0507619083,0.236388743,-0.0964288339,0.00778818503,-0.0435760878,-0.0957015082,0.280173987,-0.00494691078,-0.0739684254,0.227043554,-0.505787015,0.505335391,-0.131850734,0.708147347,0.775781274,-0.6875,-0.379288375,-0.0614973269,0.0552145988,0.000354395219,-0.235406578,-0.222645462,0.401720405,0.175746262,0.151310131,-0.470703125,0.270697296,0.154849321,-0.121354103,0.193405986,-0.0624346137,0.381735265,0.0147669921,-0.380814224,0.0737052262,-0.214875326,0.0876758173,-0.363364369,0.0460061543,0.513830245,0.455026716,0.107421875,-0.11424388,0.399428844,0.270513743,-0.615123808,0.0112381242,-0.239350662,0.584821403,-0.149815992,-0.428548187,0.109103106,0.0928098708,0.0937793702,0.0793177634,0.311594576,0.438510239,0.154813781,0.335091829,0.0717699081,-0.757031262,0.662109375,-0.0451538749,0.0584875606,-0.32931003,0.733473539,0.049109824,0.0847156793,-0.0266131926,0.108629726,0.27053681,-0.0832497403,0.0435094535,0.079083167,0.360366583,-0.668294251,-0.254877687,0.33203125},{0.32911572,0.6298363,-0.06197698,0.81032985,0.70703125,-0.33109653,0.37601978,-0.46175987,0.796875,-0.21491556,-0.01331133,0.28335848,-0.34470153,0.04228125,-0.21384852,0.43151993,0.62328124,0.27443364,-0.08568261,0.0046619,0.11084902,0.05712232,-0.02204903,-0.29302153,-0.38465846,-0.4170142,-0.04416196,-0.07646825,0.0930186,-0.48450398,0.01037219,0.14840752,0.27631077,0.41805223,0.06812347,0.49663627,0.44147727,-0.03735925,-0.04088718,-0.54986215,-0.10082498,0.11088867,-0.11636303,-0.859375,0.3708382,-0.5234375,-0.37607232,0.25871876,0.2382381,-0.5000592,-0.4070853,0.2978914,0.15038483,-0.6273438,-0.6358817,-0.16799138,0.18649292,-0.08839045,-0.00194625,-0.1352798,0.2921317,-0.08204842,0.1430795,-0.60705566,0.01546883,0.30272,-0.19185285,-0.16016166,0.17089315,-0.5676082,0.5841759,0.4884543,-0.15385422,0.18454503,-0.9550781,-0.16357736,0.2823361,-0.16306853,-0.34950766,0.10523785,0.23585764,0.10911002,-0.06174502,-0.06933268,0.0674087,-0.25875053,-0.65690106,0.25195312,-0.37978515,-0.43772978,-0.08199432,0.10258378,0.38357204,-0.02725621,-0.23875642,0.02805384,0.5978009,-0.0885568,0.7061942,-0.09396461,0.3446815,-0.18851154,0.07711872,0.63458806,-0.03726156,-0.0390604,-0.26657864,-0.22846004,-0.31640625,0.37802476,0.06613509,-0.6046875,0.38584635,-0.00747775,0.50390625,0.05872819,-0.0475844,-0.12502585,0.01641415,-0.25879613,0.17574564,0.23919968,-0.01839931,0.02478073,0.21681194,0.09376767,-0.25195312,-0.3728738,0.21332818,0.35053203,-0.34765625,0.3544734,-0.47042805,0.4608226,-0.09181477,-0.10297509,0.04183041,-0.56726074,0.08764954,0.03968311,0.54886967,-0.01363209,-0.13188244,0.51376486,-0.3454804,0.09228058,-0.8326823,0.1066965,0.09500361,-0.10352346,0.08472902,0.07127567,-0.3720653,-0.1513935,0.2645942,-0.40710136,-0.6115057,-0.00322246,-0.18314879,-0.04932179,0.20563172,-0.07645699,0.49087685,0.02737515,-0.17478386,0.13429533,0.4090625,-0.20511068,0.62779015,-0.10130971,0.4342868,-0.23679191,-0.01621264,-0.01527805,-0.3740106,0.56518555,0.57604164,-0.25390625,0.495931,-0.08082249,0.21771754,0.00961164,0.13525547,-0.01622844,-0.33880517,0.05493196,0.3212103,0.06718185,-0.05629181,0.59209734,0.6281738,0.03149683,-0.1870271,0.13625039,-0.17675781,1.03125,0.00765188,0.00861447,-0.6138822,0.08002423,-0.19819382,0.56761533,-0.09230103,-0.0229382,-0.09546693,-0.20164776,-0.5188802,0.23386507,-0.10200842,0.3438744,-0.66416806,-0.05506323,0.07231437,-0.44864908,0.06017773,-0.02908321,0.03307694,0.6764323,-0.10450652,0.15526834,-0.6883681,-0.23327471,-0.4963157,-0.06513326,0.36713117,-0.07983445,0.31260726,0.01319828,-0.21727015,0.2246491,-0.1110378,-0.31746325,-0.02559832,0.47383913,0.48150635,0.39764836,0.3329241,0.19627848,0.11184146,0.02389282,0.2890625,0.04426488,0.05957715,-0.01794095,0.13671875,0.04967747,-0.3867698,-0.13227583,-0.6658854,0.1923417,-0.28527525,0.09689683,0.6734375,-0.04258057,-0.06545721,-0.0937467,0.2066306,-0.10106693,0.02282376,0.00745056,-0.37682977,-0.1013301,-0.09936811,0.3827797,0.44039884,-0.05378063,-0.0340715,0.13087463,0.27438152,0.24747497,-0.02227544,-0.12890625,-0.0395602,0.19037014,0.74609375,-0.29492188,-0.38671875,0.26072174,-0.49498698,0.12306648,0.14655304,0.19629748,0.41802496,0.1953023,0.3780382,-0.6383635,0.6897786,0.17673154,0.27445754,-0.00967594,-0.50987214,-0.16106956,-0.6694336,-0.0030719,0.52916664,-0.07908897,-0.35245535,0.42536694,-0.03736337,-0.20898817},{0.0545697175,0.00228684628,-0.169401795,-0.36769262,-0.146972656,0.345869571,-0.00890445709,-0.0338021182,-0.0949695036,0.32326445,-0.130379021,-0.26953125,-0.187016428,-0.104937069,0.0621230043,-0.0932457596,0.0404301211,-0.0495619513,0.217265487,-0.167456448,0.149433091,-0.018672578,0.369241655,0.8203125,-0.485932231,-0.171384573,0.739257812,-0.148933157,0.472070307,-0.131326169,0.563151062,-0.106677078,0.169876099,0.383725017,-0.33212167,0.0737824515,0.0800876245,0.307663679,0.00748748379,-0.167922139,0.136234656,-0.321267366,0.0800921693,-0.11049147,0.554457724,0.160127401,-0.0703329444,-0.568244457,-0.802343726,0.0288834721,-0.0900619477,-0.923828125,-0.703741789,0.428883284,0.194301441,-0.313579768,-0.0747674108,-0.337919354,0.799804688,-0.0439322442,0.135774672,-0.0712848455,0.0204704199,-0.491185904,0.263671875,-0.105936766,-0.166974276,0.506089151,0.0844776928,-0.0462985449,-0.0528988279,0.262746304,0.134777784,0.451226115,0.104140848,-0.104754336,0.613458812,-0.597595215,-0.422564328,0.0164869986,0.0506274365,-0.483704537,0.237362564,-0.002616602,0.118413068,-0.596946001,0.111976236,0.465909094,0.315468371,-0.408173978,-0.0110743213,-0.0898470879,0.12085665,0.000273693586,-0.0339662991,-0.213842228,0.0839254558,-0.324203163,-0.224184945,0.254741162,0.0161298458,-0.20992431,-0.0173828434,0.377096027,-0.410130203,0.0451763123,-0.124194421,0.464545816,0.625,-0.145499259,0.246527776,-0.0584854074,-0.260690778,-0.201660156,0.350473255,0.299024791,0.0149912443,0.225955784,-0.630301356,-0.400103927,0.482791394,0.629438937,-0.46073544,-0.619873047,0.0724986419,-0.0637108013,-0.041741401,0.124409668,-0.529346943,-0.332248271,0.161089331,-0.606863856,-0.222589135,0.342732996,-0.101535529,-0.217735991,-0.295898438,-0.243114337,0.117220253,0.13476935,-0.367060661,0.216260523,0.284124672,-0.333984375,0.160173416,-0.0015688854,-0.104756586,0.0216945559,0.213411167,-0.144032672,0.157671601,-0.426777482,-0.85546875,0.0678675473,-0.740885437,-0.00572668808,-0.370091885,-0.0543045625,0.470086336,0.0998443589,0.137676969,0.0944839492,0.280183434,0.0228606705,0.220741004,-0.0571408644,0.116200216,0.0421284623,-0.178700805,-0.0616017878,0.0778463259,-0.177657127,0.210330844,-0.274428219,-0.218298808,-0.682187498,0.101067364,-0.117172182,0.111407615,0.0327424556,0.010491835,0.0646953136,-0.0952335373,0.461914062,0.172861308,-0.187956944,0.147482917,-0.086619556,0.0199962519,-0.586495519,-0.299929708,0.01552564,0.15721269,0.890625,-0.290124506,0.376953125,-0.0596124046,0.145468757,-0.128945455,0.525111616,-0.91796875,0.95703125,0.489879251,0.0422651321,0.0722739547,-0.50390625,0.501214087,-0.208917558,-0.00910198502,-0.222186401,-0.129373118,0.0339313261,0.197797731,0.0876555741,0.423592389,0.363333344,0.329259664,-0.248885825,-0.205487594,0.479492188,-0.413956344,-0.0881643146,0.0779107213,0.396578133,0.0717665404,0.426592946,-0.208440199,0.0183290076,0.336033404,0.0530967079,-0.0427633747,-0.115736365,0.159667969,0.0180695001,-0.311423779,0.454804003,0.227487087,-0.389903843,0.677041352,-0.0395893306,0.00789003726,-0.167464808,0.221686393,0.0624446794,-0.282237291,-0.890625,-0.0764152408,-0.0435965396,-0.355442703,0.167506292,-0.0523703434,0.240729615,-0.18306908,0.144028008,0.0194914415,0.275525749,-0.000519987894,0.533482134,-0.2222296,-0.289943784,-0.233848169,0.386630625,0.339908421,0.217403442,0.0856970921,0.229041472,-0.509304762,-0.46875,0.284107357,0.112059996,0.179220766,0.156747118,-0.268543452,0.138213977,0.164542288,0.466396242,-0.540581584,-0.0604321025,-0.100072123,0.139150679,0.196338966,0.101322822,0.105715625,-0.592187524,0.36421597,0.381993443,0.294891596,0.0898422748,-0.258759469,0.881835938,0.084911488,0.521024823,0.128878742,0.231962457,0.339831322,-0.214829311,0.47145614,-0.0891210586,0.119399369,-0.00702561531},{-0.10447291,0.24565524,-0.36509076,0.03483537,0.02766692,0.82128906,-0.09697348,-0.08835018,0.21382411,0.16798568,-0.58882475,-0.17430197,-0.02375867,-0.69433594,0.3277439,0.4540673,-0.00299586,0.6464844,-0.41210938,-0.2236374,0.03721733,-0.3596674,-0.04799339,-0.12424336,-0.29106492,0.14109184,0.547712,-0.14115767,-0.03098366,-0.01012136,0.23189679,-0.19680035,0.6859375,-0.17777696,0.13720174,0.01777571,0.40706047,-0.23087488,-0.23730469,0.09717905,0.0488265,-0.09321754,-0.2220848,-0.16458628,-0.04284544,-0.28710938,0.0513682,0.31740886,-0.37214008,-0.17477757,-0.48145834,-0.03730819,0.476423,-0.32702762,-0.05338502,0.21874769,0.07811971,-0.09323096,-0.6158353,0.24030451,0.55505955,-0.41137695,-0.5647786,-0.15775418,-0.29101562,0.03495741,0.01399689,0.33301315,0.29879516,-0.06541964,-0.14599963,0.31850606,0.6588542,-0.42891386,-0.7128906,0.16946454,-0.16751851,-0.41123524,-0.16602938,-0.1957919,0.29790902,0.28425136,0.1154754,-0.05274944,-0.14844352,0.5427827,-0.07617541,0.1284146,-0.5686849,-0.04348489,-0.38186508,-0.8286133,0.22407259,-0.24508488,0.09156583,-0.2998652,-0.2070163,-0.3896897,0.30953288,0.36428285,0.13965037,-0.24922243,0.7322443,-0.112804,-0.09596851,-0.41396722,0.19631246,0.15770721,0.3055664,-0.22410034,0.38039145,-0.03370695,-0.4469808,-0.30844527,-0.03190042,-0.0014947,-0.41601562,-0.0329719,0.23335858,0.34870666,0.4608347,0.19239709,-0.17528954,0.01667155,-0.1958511,0.23194817,0.13914546,-0.1669983,0.21975963,0.39365146,0.86328125,0.3106342,0.07985935,0.23294504,0.17144541,-0.02708084,0.0829948,-0.04389548,0.18409972,0.17866956,-0.0370807,0.2305683,-0.21677221,-0.0524526,-0.03833124,0.14062667,0.03565208,0.02756733,-0.07515993,-0.45318508,0.10959549,-0.8031851,-0.48727554,-0.07590785,-0.14308068,0.04779816,-0.64119947,-0.33396947,-0.03859292,0.3438168,0.41502404,-0.27063745,0.01027273,-0.06593449,-0.3612273,-0.6114865,-0.2031336,-0.04040433,0.02892333,-0.10642394,-0.03812302,-0.20120187,0.4237149,0.00977462,0.42591146,-0.454,0.13135423,-0.00899854,-0.47143778,-0.0404466,-0.02016866,-0.23295501,0.06761123,0.02448087,0.04004832,0.23438585,0.03528184,0.40032828,0.11376147,-0.53862846,0.24021077,0.42789188,0.01812829,-0.06665581,-0.23772375,0.46972656,-0.3289377,-0.23589179,-0.11620826,0.26079914,-0.05429398,-0.02046948,1.0234375,0.03197582,-0.13618584,-0.08442459,-0.05929517,-0.01872248,0.28416762,-0.34684145,0.2290423,0.6225586,0.45437795,0.23917906,0.03957532,0.23241793,-0.23666236,-0.4236145,0.30758715,0.16991675,-0.18161368,-0.16889915,0.17379132,-0.08916273,-0.32598844,-0.17387855,-0.05200297,-0.51354164,-0.05664694,0.08884619,-0.16359898,0.3552073,0.7140625,0.23388216,0.08593388,0.22106381,0.41517612,-0.36624098,-0.0700829,-0.01924904,0.68446183,-0.45715332,0.14359328,-0.3868296,-0.06544393,0.13379095,-0.8776042,-0.3582648,0.06446943,-0.01615814,-0.1719525,0.45595703,0.36615348,-0.18953872,-0.16012463,0.6273438,0.6442308,-0.0377342,0.25882274,0.01207794,-0.12893337,0.6455729,-0.32327905,-0.12155207,0.03807897,-0.4938151,-0.23145907,0.23854838,-0.05493525,0.17289549,-0.22065863,-0.06477186,-0.06394276,0.20949282,0.24922572,-0.28320312,-0.15233478,0.23673129,0.20650618,0.43856895,0.35160196,-0.0981425,0.38573596,0.3134613,-0.01657357,0.39664063,0.0328232,-0.37695312,-0.12482917,-0.17582639,-0.00741458,0.07813085,-0.07397129,0.053926,0.08673456,-0.2959266,-0.18799321,0.05202002,1.0703125,-0.13955358},{0.235764354,0.0269019864,-0.0491699949,0.0505318083,0.22460568,0.116664223,0.043813508,0.471003592,0.0268718153,0.627103388,-0.305682153,-0.255859375,-0.305720896,-0.259796798,0.658691406,-0.124006353,-0.0342936404,0.51953125,-0.231361911,-0.556469321,0.165997833,0.312506676,0.513859153,0.111368552,0.309570312,-0.0526957996,0.102999657,0.126436621,-0.0457740463,0.00485152239,-0.055073861,-0.165048927,-0.13229616,-0.429133624,0.0112696094,-0.0265738051,-0.0353942513,-0.130770251,0.0294018649,-0.234419018,-0.384136647,-0.0222840961,0.088409096,0.509876192,-0.320326388,-0.086193122,0.32688579,0.0600525215,-0.178727925,-0.0929985493,-0.321195215,0.47653538,-0.150364235,-0.544170678,-0.212465435,0.0469901375,0.00446256949,-0.821614563,-0.133745804,-0.490027219,-0.0125669762,-0.00365955383,0.416143388,0.23443009,-0.192412406,0.189450458,-0.353449315,-0.0582262874,-0.168986544,-0.669531226,0.290041834,0.455760181,0.179700151,-0.385811388,-0.251953125,0.187472194,-0.14062041,-0.0207122061,-0.125153407,0.644791663,0.137679636,-0.400568187,0.260736555,-0.552532315,-0.349633783,0.3203125,0.0781024843,0.50390625,-0.11425285,-0.193816066,-0.415774643,0.0844216272,0.0135080237,-0.403631538,0.107007548,-0.00544692529,-0.306640625,0.28427124,0.00405891892,0.0287712943,0.0598491393,0.122304827,0.00886991248,0.0896532238,0.627278626,0.417939603,0.182644382,0.2348921,0.537332594,0.474449277,-0.0539686233,-0.112277418,-0.40512085,-0.0154011399,-0.159111753,0.13082473,-0.358359367,-0.225578815,-0.476649314,0.394435972,0.129411265,0.0981216803,-0.367228359,0.48178336,0.0558035225,-0.0810208544,-0.000116492512,-0.405141473,0.18161428,-0.01639832,-0.00731464522,-0.31736204,-0.776785731,0.0854136571,-0.15967831,0.104493544,0.353625655,-0.0966948345,0.340927482,0.654492199,0.0299366284,-0.106002085,0.197250366,0.235348314,0.0330496542,0.112329185,-0.22076416,-0.0591910556,0.180618927,-0.13474898,0.0192012023,-0.23048684,-0.193802983,0.647977948,-0.0986225754,-0.0245942622,0.27058807,-0.236305103,0.0998072103,-0.353502214,0.192785084,0.138214856,0.210013866,-0.304766774,0.237264201,0.485026032,0.137695312,0.210453495,0.447374135,0.246071979,0.18898648,-0.0136750806,-0.152824149,-0.321274906,-0.168977663,0.190423205,-0.353539169,0.430101812,0.2529625,0.0373373516,-0.129913822,0.254747927,-0.230892971,0.0167671219,-0.394907743,-0.776367188,-0.2249659,-0.334859908,-0.334128559,0.103952646,-0.111618817,-0.00819239859,0.140154228,0.237886712,0.122589111,-0.0885536224,-0.108834043,-0.189985454,0.0568463318,-0.159135625,0.653501153,-0.0249223653,0.038052287,0.172369555,-0.303695261,-0.147942618,0.350610346,-0.129383326,-0.226466969,0.094645597,-0.599311411,0.0185691472,-0.572435439,0.0401643887,-0.0617643893,-0.289997518,0.073978655,-0.256907016,0.17427358,-0.0523825958,0.269314229,0.334993958,0.636532724,-0.470407188,-0.00647870218,-0.452884197,0.472588897,0.111325294,-0.0110041555,0.00222596363,-0.717773438,0.383458018,0.270561367,0.323346466,-0.150369197,0.256732434,0.204110712,0.338038355,-0.33273527,-0.105729744,-0.299681723,0.181139231,-0.141113281,-0.354508013,0.326183021,0.00775196636,0.500336766,0.673639119,0.0592301898,-0.00706418371,0.32798779,-0.251953125,-0.0545500033,-0.0091167381,-0.327042878,0.0693148375,-0.177670047,-0.145513892,0.216881067,0.0649732351,0.00240607443,0.0908262655,-0.388742477,0.657924116,-0.356411636,-0.0588288158,-0.168014646,-0.658405185,0.132771,0.0736677349,-0.552532315,0.425765991,0.026166046,0.173285887,0.389532179,0.44354248,0.321104318,0.8359375,0.0270047057,-0.0175925754,-0.139176041,0.340926677,-0.212282717,-0.0705086142,0.236287817,0.113229252,0.0886572078,-0.0311573204,0.0822694376,0.720052063,-0.315394938,-0.00314973993,-0.270449311,-0.0140538458,0.00393599411,0.0893350095,0.0155001739,0.234906793,0.302734375,0.0128724324}};
+
+int PersistentStorage::commonCB(void *data, int argc, char **argv, char **azColName)
+{
+       GC_DBG("Message : %s", static_cast<char*>(data));
+
+       return 0;
+}
+
+int PersistentStorage::createDB()
+{
+       int retVal = sqlite3_open(DATABASE_FULL_PATH, &w2v_db);
+       if (retVal) {
+               GC_INFO("Can't open database: %s", sqlite3_errmsg(w2v_db));
+               return -1;
+       }
+
+       const char* data = "Callback Function for User Category table create invoked";
+       char queryBuffer[MAX_QUERY_SIZE];
+       char query[4048] = {'0'};
+       int count = 0;
+       for(int i = 0; i < W2VDIM; ++i)
+               count += snprintf(query + count, 15, ", W%d double", i);
+
+       snprintf(queryBuffer, MAX_QUERY_SIZE, "CREATE TABLE IF NOT EXISTS %s (%s VARCHAR(64) PRIMARY KEY NOT NULL, %s VARCHAR(64), %s INT %s );",
+               TABLE_USER_PROFILE_DATA.c_str(), KEY_USERID.c_str(), KEY_CATEGORY.c_str(), KEY_WORDCOUNT.c_str(), query);
+       retVal = executeQuery(w2v_db, commonCB, (void*)data, queryBuffer);
+       return retVal;
+}
+
+int PersistentStorage::checkWordEmbeddingDataCB(void *data, int argc, char **argv, char **azColName)
+{
+       pair<float, bool>* queryVal = reinterpret_cast<pair<float, bool>*>(data);
+       queryVal->second = true;
+       queryVal->first = atof(argv[1]);
+       return 0;
+}
+
+vector<tuple<float, bool, bool>> PersistentStorage::checkWordEmbedding(const vector<string>& words)
+{
+       vector<tuple<float, bool, bool>> retVal;
+       pair<float, bool> data(0.0, false);
+       pair<float, bool> defaultVal(0.0, false);
+       bool dataDict = false;
+       char queryBuffer[MAX_QUERY_SIZE];
+       vector<string>::const_iterator sIt = words.begin(), eIt = words.end();
+       for (; sIt != eIt; ++sIt) {
+               data = defaultVal;
+               dataDict = false;
+
+               snprintf(queryBuffer, MAX_QUERY_SIZE, "SELECT * FROM foobar WHERE NAME = '%s';", (*sIt).c_str());
+
+               executeQuery(w2v_db, checkWordEmbeddingDataCB, (void*)&data, queryBuffer);
+
+               retVal.push_back(make_tuple(data.first, data.second, dataDict));
+       }
+
+       return retVal;
+}
+
+int PersistentStorage::executeQuery(sqlite3* db, int (*callback)(void*,int,char**,char**), void* data, char* queryBuffer) {
+       int retVal = 0;
+       char *errMsg = NULL;
+
+       int rc = sqlite3_exec(db, queryBuffer, callback, (void*)data, &errMsg);
+
+       if (rc != SQLITE_OK) {
+               GC_ERR("Query Execution Error: %s", errMsg);
+               GC_ERR("SQL Query : %s", queryBuffer);
+               sqlite3_free(errMsg);
+               retVal = 1;
+       }
+
+       return retVal;
+}
+
+PersistentStorage::PersistentStorage() : w2v_db(NULL), W2V_DATABASE_NAME("W2VDB"),
+       USER_DATABASE_NAME("UserDB"), TABLE_USER_DATA("UserData"), TABLE_USER_PROFILE_DATA("CategoryProfileData"),
+       TABLE_USER_KEYWORD_DATA("UserKeyWordData"), TABLE_USER_HISTORY_DATA("UserHistoryData"), KEY_USERID("UserID"),
+       KEY_WORD("Word"), KEY_CATEGORY("Category"), KEY_WORDCOUNT("WordCount"), KEY_ENTRYID("EntryID"), KEY_KEYWORDS("KeyWords")  {
+       createDB();
+}
+
+PersistentStorage::~PersistentStorage() {
+       if (w2v_db)
+               sqlite3_close(w2v_db);
+       w2v_db = NULL;
+}
+
+int PersistentStorage::embeddingDataCB(void *data, int argc, char **argv, char **azColName) {
+       vector<long long int>* queryVal = reinterpret_cast<vector<long long int>*>(data);
+       for (int i = 0; i < MAX_WORDS; ++i)
+               queryVal->push_back(atoll(argv[i + 2]));
+
+       return 0;
+}
+
+vector<vector<float>> PersistentStorage::getWordEmbedding(const vector<string>& words) {
+       vector<vector<float>> retVal;
+       vector<float> defFloatVal(W2VDIM, 0);
+
+       char queryBuffer[MAX_QUERY_SIZE];
+       vector<string>::const_iterator sIt = words.begin(), eIt = words.end();
+       for (; sIt != eIt; ++sIt) {
+               vector<long long int> data;
+               snprintf(queryBuffer, MAX_QUERY_SIZE, "SELECT * FROM foobar WHERE NAME = '%s';",(*sIt).c_str());
+               executeQuery(w2v_db, embeddingDataCB, (void*)&data, queryBuffer);
+               if (!data.size()) {
+                       retVal.push_back(defFloatVal);
+               }else {
+                       vector<float> embeddingVal;
+                       for (int j = 0; j < MAX_WORDS; ++j) {
+                               for(int k = 0; k < 6; ++k)
+                                       embeddingVal.push_back(centVal[(data[j] >> ((5 - k)*8)) & 0xff][6*j+k]);
+                       }
+                       retVal.push_back(embeddingVal);
+               }
+       }
+
+       return retVal;
+}
+
+vector<pair<string, vector<float>>> gretVal;
+
+int PersistentStorage::getAllCategoryProfileCB(void *data, int argc, char **argv, char **azColName) {
+       vector<float> wordVec;
+
+       for (int i = 1; i < argc;i++)
+               wordVec.push_back(atof(argv[i]));
+
+       string cat(argv[0]);
+       gretVal.push_back(make_pair(cat, wordVec));
+       return 0;
+}
+
+vector<pair<string, vector<float>>> PersistentStorage::getAllCategoryProfile() {
+       char queryBuffer[MAX_QUERY_SIZE];
+
+       snprintf(queryBuffer, MAX_QUERY_SIZE, "SELECT * FROM profile;");
+
+       gretVal.clear();
+
+       executeQuery(w2v_db, getAllCategoryProfileCB, (void*)NULL, queryBuffer);
+
+       return gretVal;
+}
+
+int PersistentStorage::getAllUserCategoryProfileCB(void *data, int argc, char **argv, char **azColName) {
+       vector<float> wordVec;
+
+       /* The profile vector starts from 4th column, so the vector is read from this point */
+       for (int i = 3; i < argc;i++)
+               wordVec.push_back(atof(argv[i]));
+
+       string cat(argv[1]);
+       gretVal.push_back(make_pair(cat, wordVec));
+       return 0;
+}
+
+vector<pair<string, vector<float>>> PersistentStorage::getAllUserCategoryProfile(const string& UserID) {
+       char queryBuffer[MAX_QUERY_SIZE];
+
+       snprintf(queryBuffer, MAX_QUERY_SIZE, "SELECT * FROM %s where %s = '%s';", TABLE_USER_PROFILE_DATA.c_str(), KEY_USERID.c_str(), UserID.c_str());
+
+       gretVal.clear();
+
+       executeQuery(w2v_db, getAllUserCategoryProfileCB, (void*)NULL, queryBuffer);
+
+       return gretVal;
+}
+
+int PersistentStorage::getCategoryProfileCB(void *data, int argc, char **argv, char **azColName)
+{
+       CategoryProfile* uProfile  = reinterpret_cast<CategoryProfile*>(data);
+       uProfile->wordCount =  atoi(argv[2]);
+       uProfile->categoryName = argv[1];
+       for(int i = 0; i < W2VDIM; ++i)
+               uProfile->profile.push_back(atof(argv[i + 3]));
+
+       return 0;
+}
+
+CategoryProfile PersistentStorage::getCategoryProfile(const string& userID)
+{
+       CategoryProfile retVal;
+       vector<float> defVal(W2VDIM, 0.0);
+       char queryBuffer[MAX_QUERY_SIZE];
+       snprintf(queryBuffer, MAX_QUERY_SIZE, "SELECT * FROM %s WHERE %s = '%s';",
+               TABLE_USER_PROFILE_DATA.c_str(), KEY_USERID.c_str(), userID.c_str());
+       executeQuery(w2v_db, getCategoryProfileCB, (void*)& retVal, queryBuffer);
+       if(!retVal.wordCount)
+               retVal.profile = defVal;
+
+       return retVal;
+}
+
+int PersistentStorage::updateCategoryProfile(const string& userID, const CategoryProfile& categoryProfile)
+{
+       const char* data = "Callback Function Called";
+
+       char queryBuffer[MAX_QUERY_SIZE];
+       snprintf(queryBuffer, MAX_QUERY_SIZE, "DELETE FROM %s WHERE %s = '%s' AND %s = '%s';", TABLE_USER_PROFILE_DATA.c_str(),
+               KEY_USERID.c_str(), userID.c_str(), KEY_CATEGORY.c_str(), categoryProfile.categoryName.c_str());
+       int retVal = executeQuery(w2v_db, commonCB, (void*)data, queryBuffer);
+
+       string keyStr(""), valStr("");
+
+       for(int i = 0; i < W2VDIM; ++i)
+       {
+               keyStr += ", W";
+               keyStr += to_string(i);
+               valStr += ", ";
+               valStr += to_string(categoryProfile.profile[i]);
+       }
+
+       snprintf(queryBuffer, MAX_QUERY_SIZE, "INSERT INTO %s(%s, %s, %s %s) VALUES ('%s', '%s', %d %s);", TABLE_USER_PROFILE_DATA.c_str(),
+               KEY_USERID.c_str(), KEY_CATEGORY.c_str(), KEY_WORDCOUNT.c_str(), keyStr.c_str(), userID.c_str(), categoryProfile.categoryName.c_str(), categoryProfile.wordCount, valStr.c_str());
+       retVal = executeQuery(w2v_db, commonCB, (void*)data, queryBuffer);
+
+       return retVal;
+}
+
+int PersistentStorage::addCategoryProfile(const string& userID, const string& category)
+{
+       char queryBuffer[MAX_QUERY_SIZE];
+       const char* data = "Callback Function Called";
+
+       string keyStr(""), valStr("");
+
+       for(int i = 0; i < W2VDIM; ++i)
+       {
+               keyStr += ", W";
+               keyStr += to_string(i);
+               valStr += ", ";
+               valStr += to_string(0);
+       }
+
+       snprintf(queryBuffer, MAX_QUERY_SIZE, "INSERT INTO %s(%s, %s, %s %s) VALUES ('%s', '%s', %d %s);", TABLE_USER_PROFILE_DATA.c_str(),
+               KEY_USERID.c_str(), KEY_CATEGORY.c_str(), KEY_WORDCOUNT.c_str(), keyStr.c_str(), userID.c_str(), category.c_str(), 0, valStr.c_str());
+       int retVal = executeQuery(w2v_db, commonCB, (void*)data, queryBuffer);
+
+       return retVal;
+}
+
+int PersistentStorage::deleteCategoryProfile(const string& userID, const string& category)
+{
+       const char* data = "Callback Function Called";
+
+       char queryBuffer[MAX_QUERY_SIZE];
+       snprintf(queryBuffer, MAX_QUERY_SIZE, "DELETE FROM %s WHERE %s = '%s' AND %s = '%s';", TABLE_USER_PROFILE_DATA.c_str(),
+               KEY_USERID.c_str(), userID.c_str(), KEY_CATEGORY.c_str(), category.c_str());
+       int retVal = executeQuery(w2v_db, commonCB, (void*)data, queryBuffer);
+       return retVal;
+}
diff --git a/src/generic_text_classifier.c b/src/generic_text_classifier.c
new file mode 100644 (file)
index 0000000..9f436ac
--- /dev/null
@@ -0,0 +1,129 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+#include <glib.h>
+
+#include "gc_internal.h"
+#include "gc_common.h"
+#include "gc_inference.h"
+#include "generic_text_classifier.h"
+#include "gc_private.h"
+
+static GSList *classifier_list = NULL;
+
+int text_classifier_initialize(void)
+{
+       return _initialize();
+}
+
+int text_classifier_deinitialize(void)
+{
+       return _deinitialize();
+}
+
+int text_classifier_create(gc_classifier_h *classifier_handle, char *app_id, char *user_id)
+{
+       gc_classifier_s *__classifier = NULL;
+
+       GC_CHECK_INIT_STATUS();
+       GC_CHECK_INPUT_PARAMETER(classifier_handle);
+       GC_CHECK_INPUT_PARAMETER(app_id);
+       GC_CHECK_INPUT_PARAMETER(user_id);
+
+       __classifier = (gc_classifier_s *)g_malloc0(sizeof(gc_classifier_s));
+       __classifier->handle = GPOINTER_TO_INT(__classifier);
+       __classifier->appID = g_strdup(app_id);
+       __classifier->uID = g_strdup(user_id);
+
+       *classifier_handle = (gc_classifier_h)__classifier;
+
+       classifier_list = g_slist_append(classifier_list, __classifier);
+
+       return GC_ERROR_NONE;
+}
+
+int text_classifier_delete(gc_classifier_h *classifier_handle)
+{
+       gc_classifier_s *__classifier = (gc_classifier_s *)classifier_handle;
+
+       GC_CHECK_INIT_STATUS();
+       GC_CHECK_INPUT_PARAMETER(classifier_handle);
+
+       classifier_list = g_slist_remove(classifier_list, __classifier);
+
+       g_free(__classifier->appID);
+       g_free(__classifier->uID);
+       g_free(__classifier);
+       return GC_ERROR_NONE;
+}
+
+int text_classifier_get_category(gc_classifier_h *classifier_handle, char *text_data, int text_data_len, gc_category_s *category_list)
+{
+       int ret_val = GC_ERROR_NONE;
+       gc_classifier_s *__classifier = (gc_classifier_s *)classifier_handle;
+
+       GC_CHECK_INIT_STATUS();
+       GC_CHECK_INPUT_PARAMETER(classifier_handle);
+       GC_CHECK_INPUT_PARAMETER(text_data);
+       GC_CHECK_INPUT_PARAMETER_UINT(text_data_len);
+       GC_CHECK_INPUT_PARAMETER(category_list);
+
+       ret_val = _get_category(__classifier, text_data, text_data_len, category_list);
+
+       return ret_val;
+}
+
+int text_classifier_add_category(gc_classifier_h *classifier_handle, char *category_name)
+{
+       int ret_val = GC_ERROR_NONE;
+       gc_classifier_s *__classifier = (gc_classifier_s *)classifier_handle;
+
+       GC_CHECK_INIT_STATUS();
+       GC_CHECK_INPUT_PARAMETER(classifier_handle);
+       GC_CHECK_INPUT_PARAMETER(category_name);
+       ret_val = _add_category(__classifier, category_name);
+
+       return ret_val;
+}
+
+int text_classifier_delete_category(gc_classifier_h *classifier_handle, char *category_name)
+{
+       int ret_val = GC_ERROR_NONE;
+       gc_classifier_s *__classifier = (gc_classifier_s *)classifier_handle;
+
+       GC_CHECK_INIT_STATUS();
+       GC_CHECK_INPUT_PARAMETER(classifier_handle);
+       GC_CHECK_INPUT_PARAMETER(category_name);
+
+       ret_val = _delete_category(__classifier, category_name);
+
+       return ret_val;
+}
+
+int text_classifier_update_category(gc_classifier_h *classifier_handle, char *category_name, char *text_data, int text_data_len)
+{
+       int ret_val = GC_ERROR_NONE;
+       gc_classifier_s *__classifier = (gc_classifier_s *)classifier_handle;
+
+       GC_CHECK_INIT_STATUS();
+       GC_CHECK_INPUT_PARAMETER(classifier_handle);
+       GC_CHECK_INPUT_PARAMETER(category_name);
+       GC_CHECK_INPUT_PARAMETER(text_data);
+       GC_CHECK_INPUT_PARAMETER_UINT(text_data_len);
+
+       ret_val = _update_category(__classifier, category_name, text_data, text_data_len);
+
+       return ret_val;
+}